diff options
author | dilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-26 17:25:25 +0000 |
---|---|---|
committer | dilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-26 17:25:25 +0000 |
commit | e7e3803e3935dad91d825df538b3a2de3835d4c6 (patch) | |
tree | 1b701b8cb09249c147dec3df3f38a7c4ff025f19 /chrome/service | |
parent | 13c4ebf4808f7c20a09f4f64e6831473dffd27a7 (diff) | |
download | chromium_src-e7e3803e3935dad91d825df538b3a2de3835d4c6.zip chromium_src-e7e3803e3935dad91d825df538b3a2de3835d4c6.tar.gz chromium_src-e7e3803e3935dad91d825df538b3a2de3835d4c6.tar.bz2 |
Remove explicit keyword from multi-argument (w/o default values) constructors
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/7477008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94115 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service')
-rw-r--r-- | chrome/service/cloud_print/cloud_print_proxy_backend.cc | 10 | ||||
-rw-r--r-- | chrome/service/cloud_print/print_system_cups.cc | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/chrome/service/cloud_print/cloud_print_proxy_backend.cc b/chrome/service/cloud_print/cloud_print_proxy_backend.cc index 7e6b3b1..f76c2ce 100644 --- a/chrome/service/cloud_print/cloud_print_proxy_backend.cc +++ b/chrome/service/cloud_print/cloud_print_proxy_backend.cc @@ -44,11 +44,11 @@ class CloudPrintProxyBackend::Core public: // It is OK for print_server_url to be empty. In this case system should // use system default (local) print server. - explicit Core(CloudPrintProxyBackend* backend, - const GURL& cloud_print_server_url, - const DictionaryValue* print_system_settings, - const gaia::OAuthClientInfo& oauth_client_info, - bool enable_job_poll); + Core(CloudPrintProxyBackend* backend, + const GURL& cloud_print_server_url, + const DictionaryValue* print_system_settings, + const gaia::OAuthClientInfo& oauth_client_info, + bool enable_job_poll); // Note: // diff --git a/chrome/service/cloud_print/print_system_cups.cc b/chrome/service/cloud_print/print_system_cups.cc index 3387334..54ee38f 100644 --- a/chrome/service/cloud_print/print_system_cups.cc +++ b/chrome/service/cloud_print/print_system_cups.cc @@ -236,8 +236,8 @@ class PrintServerWatcherCUPS class PrinterWatcherCUPS : public PrintSystem::PrinterWatcher { public: - explicit PrinterWatcherCUPS(PrintSystemCUPS* print_system, - const std::string& printer_name) + PrinterWatcherCUPS(PrintSystemCUPS* print_system, + const std::string& printer_name) : printer_name_(printer_name), delegate_(NULL), print_system_(print_system) { |