Revert 161634 - [content shell] allow universal access from file URLs in layout tests
BUG=111316 TEST=compositing/iframes/iframe-in-composited-layer.html does not time out Review URL: https://chromiumcodereview.appspot.com/11116013 TBR=jochen@chromium.org Review URL: https://codereview.chromium.org/11139006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161659 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
chrome/browser/ui/startup
content
browser
web_contents
public
shell
@ -25,7 +25,6 @@ void ShowBadFlagsPrompt(Browser* browser) {
|
|||||||
switches::kNoSandbox,
|
switches::kNoSandbox,
|
||||||
switches::kInProcessWebGL,
|
switches::kInProcessWebGL,
|
||||||
switches::kDisableWebSecurity,
|
switches::kDisableWebSecurity,
|
||||||
switches::kAllowUniversalAccessFromFiles,
|
|
||||||
// Browser plugin is dangerous on regular pages because it breaks the Same
|
// Browser plugin is dangerous on regular pages because it breaks the Same
|
||||||
// Origin Policy.
|
// Origin Policy.
|
||||||
switches::kEnableBrowserPluginForAllViewTypes,
|
switches::kEnableBrowserPluginForAllViewTypes,
|
||||||
|
@ -525,8 +525,6 @@ WebPreferences WebContentsImpl::GetWebkitPrefs(RenderViewHost* rvh,
|
|||||||
command_line.HasSwitch(switches::kEnablePrivilegedWebGLExtensions);
|
command_line.HasSwitch(switches::kEnablePrivilegedWebGLExtensions);
|
||||||
prefs.site_specific_quirks_enabled =
|
prefs.site_specific_quirks_enabled =
|
||||||
!command_line.HasSwitch(switches::kDisableSiteSpecificQuirks);
|
!command_line.HasSwitch(switches::kDisableSiteSpecificQuirks);
|
||||||
prefs.allow_universal_access_from_file_urls =
|
|
||||||
command_line.HasSwitch(switches::kAllowUniversalAccessFromFiles);
|
|
||||||
prefs.allow_file_access_from_file_urls =
|
prefs.allow_file_access_from_file_urls =
|
||||||
command_line.HasSwitch(switches::kAllowFileAccessFromFiles);
|
command_line.HasSwitch(switches::kAllowFileAccessFromFiles);
|
||||||
prefs.show_composited_layer_borders =
|
prefs.show_composited_layer_borders =
|
||||||
|
@ -10,11 +10,6 @@ namespace switches {
|
|||||||
// override for developers who need the old behavior for testing.
|
// override for developers who need the old behavior for testing.
|
||||||
const char kAllowFileAccessFromFiles[] = "allow-file-access-from-files";
|
const char kAllowFileAccessFromFiles[] = "allow-file-access-from-files";
|
||||||
|
|
||||||
// Explicitely grant the ability to access every other SecurityOrigin to
|
|
||||||
// file URLs. This is a security havoc and should only be used for testing.
|
|
||||||
const char kAllowUniversalAccessFromFiles[] =
|
|
||||||
"allow-universal-access-from-files";
|
|
||||||
|
|
||||||
// Allows debugging of sandboxed processes (see zygote_main_linux.cc).
|
// Allows debugging of sandboxed processes (see zygote_main_linux.cc).
|
||||||
const char kAllowSandboxDebugging[] = "allow-sandbox-debugging";
|
const char kAllowSandboxDebugging[] = "allow-sandbox-debugging";
|
||||||
|
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
namespace switches {
|
namespace switches {
|
||||||
|
|
||||||
CONTENT_EXPORT extern const char kAllowFileAccessFromFiles[];
|
CONTENT_EXPORT extern const char kAllowFileAccessFromFiles[];
|
||||||
CONTENT_EXPORT extern const char kAllowUniversalAccessFromFiles[];
|
|
||||||
extern const char kAllowSandboxDebugging[];
|
extern const char kAllowSandboxDebugging[];
|
||||||
extern const char kAllowWebUICompositing[];
|
extern const char kAllowWebUICompositing[];
|
||||||
extern const char kAuditHandles[];
|
extern const char kAuditHandles[];
|
||||||
|
@ -87,8 +87,6 @@ bool ShellMainDelegate::BasicStartupComplete(int* exit_code) {
|
|||||||
|
|
||||||
InitLogging();
|
InitLogging();
|
||||||
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree)) {
|
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree)) {
|
||||||
CommandLine::ForCurrentProcess()->AppendSwitch(
|
|
||||||
switches::kAllowUniversalAccessFromFiles);
|
|
||||||
CommandLine::ForCurrentProcess()->AppendSwitch(
|
CommandLine::ForCurrentProcess()->AppendSwitch(
|
||||||
switches::kAllowFileAccessFromFiles);
|
switches::kAllowFileAccessFromFiles);
|
||||||
CommandLine::ForCurrentProcess()->AppendSwitch(
|
CommandLine::ForCurrentProcess()->AppendSwitch(
|
||||||
|
Reference in New Issue
Block a user