summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjvoung@google.com <jvoung@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-02 22:13:59 +0000
committerjvoung@google.com <jvoung@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-02 22:13:59 +0000
commit4ff6144b556f245b1627de65d9a903348baf99be (patch)
tree4acde230f46328e47ff8c3862a36979cc98af016
parentd16ad45f4c9bc0290d828a31a320e9270ad91c33 (diff)
downloadchromium_src-4ff6144b556f245b1627de65d9a903348baf99be.zip
chromium_src-4ff6144b556f245b1627de65d9a903348baf99be.tar.gz
chromium_src-4ff6144b556f245b1627de65d9a903348baf99be.tar.bz2
Disable pnacl via component updater for now.
For patching into Beta Branch. Tests should continue to work via local copy. BUG=237327 TEST=manual (no pnacl dir in base user-data-dir) && browser_tests --gtest_filter=*Pnacl* R=cpu@chromium.org Review URL: https://codereview.chromium.org/14600017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197990 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/component_updater/pnacl/pnacl_component_installer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc b/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc
index 89fb2c2..f66b8a9 100644
--- a/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc
+++ b/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc
@@ -404,7 +404,7 @@ void PnaclComponentInstaller::RegisterPnaclComponent(
const CommandLine& command_line) {
// Only register when given the right flag. This is important since
// we do an early component updater check above (in DoCheckForUpdate).
- if (command_line.HasSwitch(switches::kEnablePnacl)) {
+ if (false /* Disable for now */) {
cus_ = cus;
// If per_user, create a profile observer to watch for logins.
// Only do so after cus_ is set to something non-null.