diff options
author | bauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-08 11:29:02 +0000 |
---|---|---|
committer | bauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-08 11:29:02 +0000 |
commit | dfdfeb7e012ba3be899721cfd0912de08c0e1f53 (patch) | |
tree | ab8871fa02db12e51d6655ac2fe2d54783ec492a /content/browser/plugin_data_remover_impl_browsertest.cc | |
parent | 9dc6e8b9a45f5e2873271c38371c09e324ff8bd2 (diff) | |
download | chromium_src-dfdfeb7e012ba3be899721cfd0912de08c0e1f53.zip chromium_src-dfdfeb7e012ba3be899721cfd0912de08c0e1f53.tar.gz chromium_src-dfdfeb7e012ba3be899721cfd0912de08c0e1f53.tar.bz2 |
Infobar all unknown unsandboxed plug-ins.
BUG=130743
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10544003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141197 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/plugin_data_remover_impl_browsertest.cc')
-rw-r--r-- | content/browser/plugin_data_remover_impl_browsertest.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/content/browser/plugin_data_remover_impl_browsertest.cc b/content/browser/plugin_data_remover_impl_browsertest.cc index e9ff41d..c8cfbc02 100644 --- a/content/browser/plugin_data_remover_impl_browsertest.cc +++ b/content/browser/plugin_data_remover_impl_browsertest.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -33,6 +33,12 @@ class PluginDataRemoverTest : public InProcessBrowserTest, command_line->AppendSwitchPath(switches::kExtraPluginDir, browser_directory.AppendASCII("plugins")); #endif + // TODO(jam): since these plugin tests are running under Chrome, we need to + // tell it to disable its security features for old plugins. Once this is + // running under content_browsertests, these flags won't be needed. + // http://crbug.com/90448 + // switches::kAlwaysAuthorizePlugins + command_line->AppendSwitch("always-authorize-plugins"); } }; |