Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_MANIFEST_CONSTANTS_H_ | 5 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| 7 | 7 |
| 8 // Keys used in JSON representation of extensions. | 8 // Keys used in JSON representation of extensions. |
| 9 namespace extensions { | 9 namespace extensions { |
| 10 namespace manifest_keys { | 10 namespace manifest_keys { |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 141 extern const char kTtsVoicesEventTypeMarker[]; | 141 extern const char kTtsVoicesEventTypeMarker[]; |
| 142 extern const char kTtsVoicesEventTypeSentence[]; | 142 extern const char kTtsVoicesEventTypeSentence[]; |
| 143 extern const char kTtsVoicesEventTypeStart[]; | 143 extern const char kTtsVoicesEventTypeStart[]; |
| 144 extern const char kTtsVoicesEventTypeWord[]; | 144 extern const char kTtsVoicesEventTypeWord[]; |
| 145 extern const char kTtsVoicesEventTypes[]; | 145 extern const char kTtsVoicesEventTypes[]; |
| 146 extern const char kTtsVoicesGender[]; | 146 extern const char kTtsVoicesGender[]; |
| 147 extern const char kTtsVoicesLang[]; | 147 extern const char kTtsVoicesLang[]; |
| 148 extern const char kTtsVoicesVoiceName[]; | 148 extern const char kTtsVoicesVoiceName[]; |
| 149 extern const char kType[]; | 149 extern const char kType[]; |
| 150 extern const char kUpdateURL[]; | 150 extern const char kUpdateURL[]; |
| 151 extern const char kUrlHandlers[]; | |
|
benwells
2013/09/04 23:54:20
Nit: Url -> URL
sergeygs
2013/09/05 09:19:03
Already replied in a different file.
| |
| 152 extern const char kUrlHandlerTitle[]; | |
| 151 extern const char kVersion[]; | 153 extern const char kVersion[]; |
| 152 extern const char kWebAccessibleResources[]; | 154 extern const char kWebAccessibleResources[]; |
| 153 extern const char kWebURLs[]; | 155 extern const char kWebURLs[]; |
| 154 } // namespace manifest_keys | 156 } // namespace manifest_keys |
| 155 | 157 |
| 156 } // namespace extensions | 158 } // namespace extensions |
| 157 | 159 |
| 158 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 160 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |