Bumping manifests a=b2g-bump
[gecko.git] / xpcom / glue / nsStringGlue.h
bloba444eb8a194031e5dc31d8585f3258f730ccde35
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 // IWYU pragma: private, include "nsString.h"
8 /**
9 * @file nsStringGlue.h
10 * This header exists solely to #include the proper internal/frozen string
11 * headers, depending on whether MOZILLA_INTERNAL_API is defined.
14 #ifndef nsStringGlue_h__
15 #define nsStringGlue_h__
17 #ifdef MOZILLA_INTERNAL_API
18 #include "nsString.h"
19 #include "nsReadableUtils.h"
20 #else
21 #include "nsStringAPI.h"
22 #endif
24 #endif // nsStringGlue_h__