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" | 8 #include "base/basictypes.h" |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "ui/base/layout.h" | 10 #include "ui/base/layout.h" |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
204 | 204 |
205 // The extension id used for testing mimeHandlerPrivate. | 205 // The extension id used for testing mimeHandlerPrivate. |
206 extern const char kMimeHandlerPrivateTestExtensionId[]; | 206 extern const char kMimeHandlerPrivateTestExtensionId[]; |
207 | 207 |
208 // The extension id for the production version of Hangouts. | 208 // The extension id for the production version of Hangouts. |
209 extern const char kProdHangoutsExtensionId[]; | 209 extern const char kProdHangoutsExtensionId[]; |
210 | 210 |
211 // Extension ids used by Hangouts. | 211 // Extension ids used by Hangouts. |
212 extern const char* const kHangoutsExtensionIds[6]; | 212 extern const char* const kHangoutsExtensionIds[6]; |
213 | 213 |
214 // Extension ids used by IME | |
Devlin
2015/12/18 17:58:41
nit: end in a period.
Azure Wei
2015/12/19 07:21:42
Done. Thanks!
| |
215 extern const char* const kIMEExtensionIds[2]; | |
216 | |
214 } // namespace extension_misc | 217 } // namespace extension_misc |
215 | 218 |
216 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ | 219 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ |
OLD | NEW |