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

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

Issue 1168383002: Implement sidebar support for extension action popups Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix assertion failure at extension_view_host.cc Created 5 years, 2 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
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | extensions/common/view_type.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 "'file_system_provider_capabilities' section to be specified in the " 722 "'file_system_provider_capabilities' section to be specified in the "
722 "manifest."; 723 "manifest.";
723 const char kInvalidFileSystemProviderMissingPermission[] = 724 const char kInvalidFileSystemProviderMissingPermission[] =
724 "The 'file_system_provider_capabilities' section requires the " 725 "The 'file_system_provider_capabilities' section requires the "
725 "'fileSystemProvider' permission to be specified in the manifest."; 726 "'fileSystemProvider' permission to be specified in the manifest.";
726 #endif 727 #endif
727 728
728 } // namespace manifest_errors 729 } // namespace manifest_errors
729 730
730 } // namespace extensions 731 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | extensions/common/view_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698