| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 216 |
| 217 // The extension id of the Office Viewer extension on the internal webstore. | 217 // The extension id of the Office Viewer extension on the internal webstore. |
| 218 extern const char kQuickOfficeInternalExtensionId[]; | 218 extern const char kQuickOfficeInternalExtensionId[]; |
| 219 | 219 |
| 220 // The extension id of the Office Viewer extension. | 220 // The extension id of the Office Viewer extension. |
| 221 extern const char kQuickOfficeExtensionId[]; | 221 extern const char kQuickOfficeExtensionId[]; |
| 222 | 222 |
| 223 // The extension id used for testing mimeHandlerPrivate. | 223 // The extension id used for testing mimeHandlerPrivate. |
| 224 extern const char kMimeHandlerPrivateTestExtensionId[]; | 224 extern const char kMimeHandlerPrivateTestExtensionId[]; |
| 225 | 225 |
| 226 // The extension id for the production version of Hangouts. |
| 227 extern const char kProdHangoutsExtensionId[]; |
| 228 |
| 229 // Extension ids used by Hangouts. |
| 230 extern const char* const kHangoutsExtensionIds[6]; |
| 231 |
| 226 } // namespace extension_misc | 232 } // namespace extension_misc |
| 227 | 233 |
| 228 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ | 234 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ |
| OLD | NEW |