OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef EXTENSIONS_COMMON_CONSTANTS_H_ | 5 #ifndef EXTENSIONS_COMMON_CONSTANTS_H_ |
6 #define EXTENSIONS_COMMON_CONSTANTS_H_ | 6 #define EXTENSIONS_COMMON_CONSTANTS_H_ |
7 | 7 |
8 #include "base/basictypes.h" | |
9 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
10 #include "ui/base/layout.h" | 9 #include "ui/base/layout.h" |
11 | 10 |
12 namespace extensions { | 11 namespace extensions { |
13 | 12 |
14 // Scheme we serve extension content from. | 13 // Scheme we serve extension content from. |
15 extern const char kExtensionScheme[]; | 14 extern const char kExtensionScheme[]; |
16 | 15 |
17 // Canonical schemes you can use as input to GURL.SchemeIs(). | 16 // Canonical schemes you can use as input to GURL.SchemeIs(). |
18 extern const char kExtensionResourceScheme[]; | 17 extern const char kExtensionResourceScheme[]; |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 | 209 |
211 // Extension ids used by Hangouts. | 210 // Extension ids used by Hangouts. |
212 extern const char* const kHangoutsExtensionIds[6]; | 211 extern const char* const kHangoutsExtensionIds[6]; |
213 | 212 |
214 // Extension ids used by IME. | 213 // Extension ids used by IME. |
215 extern const char* const kIMEExtensionIds[2]; | 214 extern const char* const kIMEExtensionIds[2]; |
216 | 215 |
217 } // namespace extension_misc | 216 } // namespace extension_misc |
218 | 217 |
219 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ | 218 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ |
OLD | NEW |