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_frame | |
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_frame')
-rw-r--r-- | chrome_frame/custom_sync_call_context.h | 2 | ||||
-rw-r--r-- | chrome_frame/test/net/test_automation_provider.h | 4 | ||||
-rw-r--r-- | chrome_frame/test/test_server.h | 3 |
3 files changed, 4 insertions, 5 deletions
diff --git a/chrome_frame/custom_sync_call_context.h b/chrome_frame/custom_sync_call_context.h index 87eb075..9bdce87 100644 --- a/chrome_frame/custom_sync_call_context.h +++ b/chrome_frame/custom_sync_call_context.h @@ -65,7 +65,7 @@ class UnloadContext : public SyncMessageReplyDispatcher::SyncMessageCallContext { public: typedef Tuple1<bool> output_type; - explicit UnloadContext(base::WaitableEvent* unload_done, bool* should_unload) + UnloadContext(base::WaitableEvent* unload_done, bool* should_unload) : should_unload_(should_unload), unload_done_(unload_done) { } diff --git a/chrome_frame/test/net/test_automation_provider.h b/chrome_frame/test/net/test_automation_provider.h index 209a069..0c00d63 100644 --- a/chrome_frame/test/net/test_automation_provider.h +++ b/chrome_frame/test/net/test_automation_provider.h @@ -30,8 +30,8 @@ class TestAutomationProviderDelegate { class TestAutomationProvider : public AutomationProvider { public: - explicit TestAutomationProvider(Profile* profile, - TestAutomationProviderDelegate* delegate); + TestAutomationProvider(Profile* profile, + TestAutomationProviderDelegate* delegate); virtual ~TestAutomationProvider(); diff --git a/chrome_frame/test/test_server.h b/chrome_frame/test/test_server.h index 50ba5da..1b60645 100644 --- a/chrome_frame/test/test_server.h +++ b/chrome_frame/test/test_server.h @@ -374,8 +374,7 @@ class ConfigurableConnection : public base::RefCounted<ConfigurableConnection> { // instance to send the response. class HTTPTestServer : public net::ListenSocket::ListenSocketDelegate { public: - explicit HTTPTestServer(int port, const std::wstring& address, - FilePath root_dir); + HTTPTestServer(int port, const std::wstring& address, FilePath root_dir); virtual ~HTTPTestServer(); // HTTP GET request is received. Override in derived classes. |