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

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

Issue 1152613003: Implement sidebar support for extension action popups (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move SidebarManager to ExtensionSystem and remove notifications Created 5 years, 6 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 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 #include "extensions/common/manifest_constants.h" 5 #include "extensions/common/manifest_constants.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace manifest_keys { 9 namespace manifest_keys {
10 10
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 const char kOverrideHomepage[] = "chrome_settings_overrides.homepage"; 107 const char kOverrideHomepage[] = "chrome_settings_overrides.homepage";
108 const char kOverrideSearchProvider[] = 108 const char kOverrideSearchProvider[] =
109 "chrome_settings_overrides.search_provider"; 109 "chrome_settings_overrides.search_provider";
110 const char kOverrideStartupPage[] = "chrome_settings_overrides.startup_pages"; 110 const char kOverrideStartupPage[] = "chrome_settings_overrides.startup_pages";
111 const char kPageAction[] = "page_action"; 111 const char kPageAction[] = "page_action";
112 const char kPageActionDefaultIcon[] = "default_icon"; 112 const char kPageActionDefaultIcon[] = "default_icon";
113 const char kPageActionDefaultPopup[] = "default_popup"; 113 const char kPageActionDefaultPopup[] = "default_popup";
114 const char kPageActionDefaultTitle[] = "default_title"; 114 const char kPageActionDefaultTitle[] = "default_title";
115 const char kPageActionIcons[] = "icons"; 115 const char kPageActionIcons[] = "icons";
116 const char kPageActionId[] = "id"; 116 const char kPageActionId[] = "id";
117 const char kPageActionOpenInSidebar[] = "open_in_sidebar";
117 const char kPageActionPopup[] = "popup"; 118 const char kPageActionPopup[] = "popup";
118 const char kPageActionPopupPath[] = "path"; 119 const char kPageActionPopupPath[] = "path";
119 const char kPermissions[] = "permissions"; 120 const char kPermissions[] = "permissions";
120 const char kPlatformAppBackground[] = "app.background"; 121 const char kPlatformAppBackground[] = "app.background";
121 const char kPlatformAppBackgroundPage[] = "app.background.page"; 122 const char kPlatformAppBackgroundPage[] = "app.background.page";
122 const char kPlatformAppBackgroundScripts[] = "app.background.scripts"; 123 const char kPlatformAppBackgroundScripts[] = "app.background.scripts";
123 const char kPlatformAppContentSecurityPolicy[] = "app.content_security_policy"; 124 const char kPlatformAppContentSecurityPolicy[] = "app.content_security_policy";
124 const char kPlatforms[] = "platforms"; 125 const char kPlatforms[] = "platforms";
125 const char kPlugins[] = "plugins"; 126 const char kPlugins[] = "plugins";
126 const char kPluginsPath[] = "path"; 127 const char kPluginsPath[] = "path";
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
719 "'file_system_provider_capabilities' section to be specified in the " 720 "'file_system_provider_capabilities' section to be specified in the "
720 "manifest."; 721 "manifest.";
721 const char kInvalidFileSystemProviderMissingPermission[] = 722 const char kInvalidFileSystemProviderMissingPermission[] =
722 "The 'file_system_provider_capabilities' section requires the " 723 "The 'file_system_provider_capabilities' section requires the "
723 "'fileSystemProvider' permission to be specified in the manifest."; 724 "'fileSystemProvider' permission to be specified in the manifest.";
724 #endif 725 #endif
725 726
726 } // namespace manifest_errors 727 } // namespace manifest_errors
727 728
728 } // namespace extensions 729 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698