| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "chrome/common/extensions/extension_constants.h" | 5 #include "chrome/common/extensions/extension_constants.h" |
| 6 | 6 |
| 7 namespace extension_manifest_keys { | 7 namespace extension_manifest_keys { |
| 8 | 8 |
| 9 const wchar_t* kBackground = L"background_page"; | 9 const wchar_t* kBackground = L"background_page"; |
| 10 const wchar_t* kBrowserAction = L"browser_action"; | 10 const wchar_t* kBrowserAction = L"browser_action"; |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 "Default locale is defined but default data couldn't be loaded."; | 188 "Default locale is defined but default data couldn't be loaded."; |
| 189 const char* kLocalesNoValidLocaleNamesListed = | 189 const char* kLocalesNoValidLocaleNamesListed = |
| 190 "No valid locale name could be found in _locales directory."; | 190 "No valid locale name could be found in _locales directory."; |
| 191 const char* kLocalesTreeMissing = | 191 const char* kLocalesTreeMissing = |
| 192 "Default locale was specified, but _locales subtree is missing."; | 192 "Default locale was specified, but _locales subtree is missing."; |
| 193 const char* kLocalesMessagesFileMissing = | 193 const char* kLocalesMessagesFileMissing = |
| 194 "Messages file is missing for locale."; | 194 "Messages file is missing for locale."; |
| 195 const char* kInvalidOptionsPage = | 195 const char* kInvalidOptionsPage = |
| 196 "Invalid value for 'options_page'."; | 196 "Invalid value for 'options_page'."; |
| 197 } // namespace extension_manifest_errors | 197 } // namespace extension_manifest_errors |
| 198 |
| 199 namespace extension_urls { |
| 200 const char* kGalleryBrowsePrefix = "https://chrome.google.com/extensions"; |
| 201 const char* kGalleryDownloadPrefix = |
| 202 "https://clients2.googleusercontent.com/crx/download"; |
| 203 const char* kMiniGalleryBrowsePrefix = "https://tools.google.com/chrome/"; |
| 204 const char* kMiniGalleryDownloadPrefix = "https://dl-ssl.google.com/chrome/"; |
| 205 } |
| OLD | NEW |