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

Side by Side Diff: extensions/common/manifest_constants.h

Issue 782693002: Ensure there are always nice icons for bookmark apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Self review; test Created 6 years 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 5 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
7 7
8 namespace extensions { 8 namespace extensions {
9 9
10 // Keys used in JSON representation of extensions. 10 // Keys used in JSON representation of extensions.
11 namespace manifest_keys { 11 namespace manifest_keys {
12 12
13 extern const char kAboutPage[]; 13 extern const char kAboutPage[];
14 extern const char kAllFrames[]; 14 extern const char kAllFrames[];
15 extern const char kAltKey[]; 15 extern const char kAltKey[];
16 extern const char kApp[]; 16 extern const char kApp[];
17 extern const char kAppIconColor[];
17 extern const char kAutomation[]; 18 extern const char kAutomation[];
18 extern const char kBackgroundAllowJsAccess[]; 19 extern const char kBackgroundAllowJsAccess[];
19 extern const char kBackgroundPage[]; 20 extern const char kBackgroundPage[];
20 extern const char kBackgroundPageLegacy[]; 21 extern const char kBackgroundPageLegacy[];
21 extern const char kBackgroundPersistent[]; 22 extern const char kBackgroundPersistent[];
22 extern const char kBackgroundScripts[]; 23 extern const char kBackgroundScripts[];
23 extern const char kBluetooth[]; 24 extern const char kBluetooth[];
24 extern const char kBookmarkUI[]; 25 extern const char kBookmarkUI[];
25 extern const char kBrowserAction[]; 26 extern const char kBrowserAction[];
26 extern const char kBrowseURLs[]; 27 extern const char kBrowseURLs[];
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 extern const char kWebRequestConflictsWithLazyBackground[]; 461 extern const char kWebRequestConflictsWithLazyBackground[];
461 #if defined(OS_CHROMEOS) 462 #if defined(OS_CHROMEOS)
462 extern const char kIllegalPlugins[]; 463 extern const char kIllegalPlugins[];
463 #endif 464 #endif
464 465
465 } // namespace manifest_errors 466 } // namespace manifest_errors
466 467
467 } // namespace extensions 468 } // namespace extensions
468 469
469 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 470 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698