summaryrefslogtreecommitdiffstats
path: root/chrome/service/cloud_print/print_system_cups.cc
diff options
context:
space:
mode:
authordilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-26 17:25:25 +0000
committerdilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-26 17:25:25 +0000
commite7e3803e3935dad91d825df538b3a2de3835d4c6 (patch)
tree1b701b8cb09249c147dec3df3f38a7c4ff025f19 /chrome/service/cloud_print/print_system_cups.cc
parent13c4ebf4808f7c20a09f4f64e6831473dffd27a7 (diff)
downloadchromium_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/cloud_print/print_system_cups.cc')
-rw-r--r--chrome/service/cloud_print/print_system_cups.cc4
1 files changed, 2 insertions, 2 deletions
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) {