| 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 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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 // Matches chrome.windows.WINDOW_ID_CURRENT. | 70 // Matches chrome.windows.WINDOW_ID_CURRENT. |
| 71 const int kCurrentWindowId = -2; | 71 const int kCurrentWindowId = -2; |
| 72 | 72 |
| 73 // The extension id of the bookmark manager. | 73 // The extension id of the bookmark manager. |
| 74 extern const char kBookmarkManagerId[]; | 74 extern const char kBookmarkManagerId[]; |
| 75 | 75 |
| 76 // The extension id of the Chrome component application. | 76 // The extension id of the Chrome component application. |
| 77 extern const char kChromeAppId[]; | 77 extern const char kChromeAppId[]; |
| 78 | 78 |
| 79 // The extension id of the Citrix Receiver application. | |
| 80 extern const char kCitrixReceiverAppId[]; | |
| 81 | |
| 82 // The extension id of the beta Citrix Receiver application. | |
| 83 extern const char kCitrixReceiverAppBetaId[]; | |
| 84 | |
| 85 // The extension id of the dev Citrix Receiver application. | |
| 86 extern const char kCitrixReceiverAppDevId[]; | |
| 87 | |
| 88 // The extension id of the Cloud Print component application. | 79 // The extension id of the Cloud Print component application. |
| 89 extern const char kCloudPrintAppId[]; | 80 extern const char kCloudPrintAppId[]; |
| 90 | 81 |
| 91 // The extension id of the Enterprise Web Store component application. | 82 // The extension id of the Enterprise Web Store component application. |
| 92 extern const char kEnterpriseWebStoreAppId[]; | 83 extern const char kEnterpriseWebStoreAppId[]; |
| 93 | 84 |
| 94 // The extension id of GMail application. | 85 // The extension id of GMail application. |
| 95 extern const char kGmailAppId[]; | 86 extern const char kGmailAppId[]; |
| 96 | 87 |
| 97 // The extension id of the Google Doc application. | 88 // The extension id of the Google Doc application. |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 // List of sizes for extension icons that can be defined in the manifest. | 298 // List of sizes for extension icons that can be defined in the manifest. |
| 308 extern const int kExtensionActionIconSizes[]; | 299 extern const int kExtensionActionIconSizes[]; |
| 309 extern const size_t kNumExtensionActionIconSizes; | 300 extern const size_t kNumExtensionActionIconSizes; |
| 310 | 301 |
| 311 // List of sizes for extension icons that can be defined in the manifest. | 302 // List of sizes for extension icons that can be defined in the manifest. |
| 312 extern const int kScriptBadgeIconSizes[]; | 303 extern const int kScriptBadgeIconSizes[]; |
| 313 extern const size_t kNumScriptBadgeIconSizes; | 304 extern const size_t kNumScriptBadgeIconSizes; |
| 314 } // namespace extension_misc | 305 } // namespace extension_misc |
| 315 | 306 |
| 316 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 307 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |