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

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

Issue 10458063: Add sanbdoxed_pages to allow extension/app pages to be served in a sandboxed, unique origin (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/common/extensions/extension_manifest_constants.h" 6 #include "chrome/common/extensions/extension_manifest_constants.h"
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 const char kAppStateNotInstalled[] = "not_installed"; 131 const char kAppStateNotInstalled[] = "not_installed";
132 const char kAppStateInstalled[] = "installed"; 132 const char kAppStateInstalled[] = "installed";
133 const char kAppStateDisabled[] = "disabled"; 133 const char kAppStateDisabled[] = "disabled";
134 const char kAppStateRunning[] = "running"; 134 const char kAppStateRunning[] = "running";
135 const char kAppStateCannotRun[] = "cannot_run"; 135 const char kAppStateCannotRun[] = "cannot_run";
136 const char kAppStateReadyToRun[] = "ready_to_run"; 136 const char kAppStateReadyToRun[] = "ready_to_run";
137 137
138 const char kAppNotificationsIncognitoError[] = 138 const char kAppNotificationsIncognitoError[] =
139 "This API is not accessible by 'split' mode " 139 "This API is not accessible by 'split' mode "
140 "extensions in incognito windows."; 140 "extensions in incognito windows.";
141
142 extern const char kSandboxedContentSecurityPolicy[] =
143 "sandbox allow-scripts allow-forms";
141 } 144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698