diff options
author | gene@chromium.org <gene@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-03 00:33:22 +0000 |
---|---|---|
committer | gene@chromium.org <gene@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-03 00:33:22 +0000 |
commit | 4981d053220a3467f50ccb4f83e8e4127446288f (patch) | |
tree | 96484466a625706631442d1e0dcfb6894e1521fe /chrome/service | |
parent | 2d3765bbd6c6db89ac629b644abe04f65e79b749 (diff) | |
download | chromium_src-4981d053220a3467f50ccb4f83e8e4127446288f.zip chromium_src-4981d053220a3467f50ccb4f83e8e4127446288f.tar.gz chromium_src-4981d053220a3467f50ccb4f83e8e4127446288f.tar.bz2 |
Disabling CloudPrint for experiement on staging.
This should prevent CloudPrint from running, but keep all user configuration intact.
BUG=none
Review URL: https://codereview.chromium.org/11016019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159814 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service')
-rw-r--r-- | chrome/service/cloud_print/cloud_print_proxy.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/service/cloud_print/cloud_print_proxy.cc b/chrome/service/cloud_print/cloud_print_proxy.cc index c934fbe..b50487b 100644 --- a/chrome/service/cloud_print/cloud_print_proxy.cc +++ b/chrome/service/cloud_print/cloud_print_proxy.cc @@ -136,6 +136,10 @@ void CloudPrintProxy::EnableForUserWithRobot( bool CloudPrintProxy::CreateBackend() { DCHECK(CalledOnValidThread()); + // Temporary fix to disable CloudPrint for Chrome canary build. + return false; + + /* if (backend_.get()) return false; @@ -155,6 +159,7 @@ bool CloudPrintProxy::CreateBackend() { backend_.reset(new CloudPrintProxyBackend(this, settings_, oauth_client_info, enable_job_poll)); return true; + */ } void CloudPrintProxy::UnregisterPrintersAndDisableForUser() { |