| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 extern const char* kPageActionDefaultIcon; | 70 extern const char* kPageActionDefaultIcon; |
| 71 extern const char* kPageActionDefaultPopup; | 71 extern const char* kPageActionDefaultPopup; |
| 72 extern const char* kPageActionDefaultTitle; | 72 extern const char* kPageActionDefaultTitle; |
| 73 extern const char* kPageActionIcons; | 73 extern const char* kPageActionIcons; |
| 74 extern const char* kPageActionId; | 74 extern const char* kPageActionId; |
| 75 extern const char* kPageActionPopup; | 75 extern const char* kPageActionPopup; |
| 76 extern const char* kPageActionPopupHeight; | 76 extern const char* kPageActionPopupHeight; |
| 77 extern const char* kPageActionPopupPath; | 77 extern const char* kPageActionPopupPath; |
| 78 extern const char* kPageActions; | 78 extern const char* kPageActions; |
| 79 extern const char* kPermissions; | 79 extern const char* kPermissions; |
| 80 extern const char* kPlatformApp; |
| 80 extern const char* kPlugins; | 81 extern const char* kPlugins; |
| 81 extern const char* kPluginsPath; | 82 extern const char* kPluginsPath; |
| 82 extern const char* kPluginsPublic; | 83 extern const char* kPluginsPublic; |
| 83 extern const char* kPublicKey; | 84 extern const char* kPublicKey; |
| 84 extern const char* kRequirements; | 85 extern const char* kRequirements; |
| 85 extern const char* kRunAt; | 86 extern const char* kRunAt; |
| 86 extern const char* kShiftKey; | 87 extern const char* kShiftKey; |
| 87 extern const char* kShortcutKey; | 88 extern const char* kShortcutKey; |
| 88 extern const char* kSidebar; | 89 extern const char* kSidebar; |
| 89 extern const char* kSidebarDefaultIcon; | 90 extern const char* kSidebarDefaultIcon; |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 extern const char* kInvalidIntentPath; | 188 extern const char* kInvalidIntentPath; |
| 188 extern const char* kInvalidIntents; | 189 extern const char* kInvalidIntents; |
| 189 extern const char* kInvalidIntentType; | 190 extern const char* kInvalidIntentType; |
| 190 extern const char* kInvalidIntentTitle; | 191 extern const char* kInvalidIntentTitle; |
| 191 extern const char* kInvalidIsolation; | 192 extern const char* kInvalidIsolation; |
| 192 extern const char* kInvalidIsolationValue; | 193 extern const char* kInvalidIsolationValue; |
| 193 extern const char* kInvalidJs; | 194 extern const char* kInvalidJs; |
| 194 extern const char* kInvalidJsList; | 195 extern const char* kInvalidJsList; |
| 195 extern const char* kInvalidKey; | 196 extern const char* kInvalidKey; |
| 196 extern const char* kInvalidLaunchContainer; | 197 extern const char* kInvalidLaunchContainer; |
| 198 extern const char* kInvalidLaunchContainerForPlatform; |
| 197 extern const char* kInvalidLaunchHeight; | 199 extern const char* kInvalidLaunchHeight; |
| 198 extern const char* kInvalidLaunchHeightContainer; | 200 extern const char* kInvalidLaunchHeightContainer; |
| 199 extern const char* kInvalidLaunchLocalPath; | 201 extern const char* kInvalidLaunchLocalPath; |
| 200 extern const char* kInvalidLaunchWebURL; | 202 extern const char* kInvalidLaunchWebURL; |
| 201 extern const char* kInvalidLaunchWidth; | 203 extern const char* kInvalidLaunchWidth; |
| 202 extern const char* kInvalidLaunchWidthContainer; | 204 extern const char* kInvalidLaunchWidthContainer; |
| 203 extern const char* kInvalidManifest; | 205 extern const char* kInvalidManifest; |
| 204 extern const char* kInvalidMatch; | 206 extern const char* kInvalidMatch; |
| 205 extern const char* kInvalidMatchCount; | 207 extern const char* kInvalidMatchCount; |
| 206 extern const char* kInvalidMatches; | 208 extern const char* kInvalidMatches; |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 SYNC_PROMO_CONFIRMED_AFTER_SIGN_IN, | 468 SYNC_PROMO_CONFIRMED_AFTER_SIGN_IN, |
| 467 SYNC_PROMO_CLOSED_TAB, | 469 SYNC_PROMO_CLOSED_TAB, |
| 468 SYNC_PROMO_CLOSED_WINDOW, | 470 SYNC_PROMO_CLOSED_WINDOW, |
| 469 SYNC_PROMO_BUCKET_BOUNDARY, | 471 SYNC_PROMO_BUCKET_BOUNDARY, |
| 470 SYNC_PROMO_FIRST_VALID_JS_ACTION = SYNC_PROMO_LEARN_MORE_CLICKED, | 472 SYNC_PROMO_FIRST_VALID_JS_ACTION = SYNC_PROMO_LEARN_MORE_CLICKED, |
| 471 SYNC_PROMO_LAST_VALID_JS_ACTION = SYNC_PROMO_CONFIRMED_AFTER_SIGN_IN, | 473 SYNC_PROMO_LAST_VALID_JS_ACTION = SYNC_PROMO_CONFIRMED_AFTER_SIGN_IN, |
| 472 }; | 474 }; |
| 473 } // extension_misc | 475 } // extension_misc |
| 474 | 476 |
| 475 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 477 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |