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

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

Issue 159202: add mole info to toolstrip definition and enable moles (Closed)
Patch Set: ready for review Created 11 years, 5 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
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* kBackground = L"background_page"; 9 const wchar_t* kBackground = L"background_page";
10 const wchar_t* kContentScripts = L"content_scripts"; 10 const wchar_t* kContentScripts = L"content_scripts";
(...skipping 11 matching lines...) Expand all
22 const wchar_t* kPluginsPath = L"path"; 22 const wchar_t* kPluginsPath = L"path";
23 const wchar_t* kPluginsPublic = L"public"; 23 const wchar_t* kPluginsPublic = L"public";
24 const wchar_t* kPublicKey = L"key"; 24 const wchar_t* kPublicKey = L"key";
25 const wchar_t* kRunAt = L"run_at"; 25 const wchar_t* kRunAt = L"run_at";
26 const wchar_t* kSignature = L"signature"; 26 const wchar_t* kSignature = L"signature";
27 const wchar_t* kTheme = L"theme"; 27 const wchar_t* kTheme = L"theme";
28 const wchar_t* kThemeImages = L"images"; 28 const wchar_t* kThemeImages = L"images";
29 const wchar_t* kThemeColors = L"colors"; 29 const wchar_t* kThemeColors = L"colors";
30 const wchar_t* kThemeTints = L"tints"; 30 const wchar_t* kThemeTints = L"tints";
31 const wchar_t* kThemeDisplayProperties = L"properties"; 31 const wchar_t* kThemeDisplayProperties = L"properties";
32 const wchar_t* kToolstripMoleHeight = L"mole_height";
33 const wchar_t* kToolstripMolePath = L"mole";
32 const wchar_t* kToolstripPath = L"path"; 34 const wchar_t* kToolstripPath = L"path";
33 const wchar_t* kToolstrips = L"toolstrips"; 35 const wchar_t* kToolstrips = L"toolstrips";
34 const wchar_t* kType = L"type"; 36 const wchar_t* kType = L"type";
35 const wchar_t* kVersion = L"version"; 37 const wchar_t* kVersion = L"version";
36 const wchar_t* kUpdateURL = L"update_url"; 38 const wchar_t* kUpdateURL = L"update_url";
37 } // namespace extension_manifest_keys 39 } // namespace extension_manifest_keys
38 40
39 namespace extension_manifest_values { 41 namespace extension_manifest_values {
40 const char* kRunAtDocumentStart = "document_start"; 42 const char* kRunAtDocumentStart = "document_start";
41 const char* kRunAtDocumentEnd = "document_end"; 43 const char* kRunAtDocumentEnd = "document_end";
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 "Am image specified in the theme is missing."; 133 "Am image specified in the theme is missing.";
132 const char* kInvalidThemeColors = 134 const char* kInvalidThemeColors =
133 "Invalid value for theme colors - colors must be integers"; 135 "Invalid value for theme colors - colors must be integers";
134 const char* kInvalidThemeTints = 136 const char* kInvalidThemeTints =
135 "Invalid value for theme images - tints must be decimal numbers."; 137 "Invalid value for theme images - tints must be decimal numbers.";
136 const char* kInvalidUpdateURL = 138 const char* kInvalidUpdateURL =
137 "Invalid value for update url: '[*]'."; 139 "Invalid value for update url: '[*]'.";
138 const char* kThemesCannotContainExtensions = 140 const char* kThemesCannotContainExtensions =
139 "A theme cannot contain extensions code."; 141 "A theme cannot contain extensions code.";
140 } // namespace extension_manifest_errors 142 } // namespace extension_manifest_errors
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698