Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(552)

Side by Side Diff: chrome/common/extensions/extension_constants.cc

Issue 546040: Add reserved messages to ExtensionMessageBundle dictionary. They are of the f... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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* kAllFrames = L"all_frames"; 9 const wchar_t* kAllFrames = L"all_frames";
10 const wchar_t* kApp = L"app"; 10 const wchar_t* kApp = L"app";
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 const char* kLocalesNoDefaultMessages = 203 const char* kLocalesNoDefaultMessages =
204 "Default locale is defined but default data couldn't be loaded."; 204 "Default locale is defined but default data couldn't be loaded.";
205 const char* kLocalesNoValidLocaleNamesListed = 205 const char* kLocalesNoValidLocaleNamesListed =
206 "No valid locale name could be found in _locales directory."; 206 "No valid locale name could be found in _locales directory.";
207 const char* kLocalesTreeMissing = 207 const char* kLocalesTreeMissing =
208 "Default locale was specified, but _locales subtree is missing."; 208 "Default locale was specified, but _locales subtree is missing.";
209 const char* kLocalesMessagesFileMissing = 209 const char* kLocalesMessagesFileMissing =
210 "Messages file is missing for locale."; 210 "Messages file is missing for locale.";
211 const char* kInvalidOptionsPage = 211 const char* kInvalidOptionsPage =
212 "Invalid value for 'options_page'."; 212 "Invalid value for 'options_page'.";
213 const char* kReservedMessageFound =
214 "Reserved key * found in message catalog.";
213 } // namespace extension_manifest_errors 215 } // namespace extension_manifest_errors
214 216
215 namespace extension_urls { 217 namespace extension_urls {
216 const char* kGalleryBrowsePrefix = "https://chrome.google.com/extensions"; 218 const char* kGalleryBrowsePrefix = "https://chrome.google.com/extensions";
217 const char* kGalleryDownloadPrefix = 219 const char* kGalleryDownloadPrefix =
218 "https://clients2.googleusercontent.com/crx/download"; 220 "https://clients2.googleusercontent.com/crx/download";
219 const char* kMiniGalleryBrowsePrefix = "https://tools.google.com/chrome/"; 221 const char* kMiniGalleryBrowsePrefix = "https://tools.google.com/chrome/";
220 const char* kMiniGalleryDownloadPrefix = "https://dl-ssl.google.com/chrome/"; 222 const char* kMiniGalleryDownloadPrefix = "https://dl-ssl.google.com/chrome/";
221 } 223 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698