1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xpcom/glue/nsStringGlue.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 +// IWYU pragma: private, include "nsString.h" 1.8 + 1.9 +/** 1.10 + * @file nsStringGlue.h 1.11 + * This header exists solely to #include the proper internal/frozen string 1.12 + * headers, depending on whether MOZILLA_INTERNAL_API is defined. 1.13 + */ 1.14 + 1.15 +#ifndef nsStringGlue_h__ 1.16 +#define nsStringGlue_h__ 1.17 + 1.18 +#ifdef MOZILLA_INTERNAL_API 1.19 +#include "nsString.h" 1.20 +#include "nsReadableUtils.h" 1.21 +#else 1.22 +#include "nsStringAPI.h" 1.23 +#endif 1.24 + 1.25 +#endif // nsStringGlue_h__