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 /remoting/protocol | |
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 'remoting/protocol')
-rw-r--r-- | remoting/protocol/content_description.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/remoting/protocol/content_description.h b/remoting/protocol/content_description.h index f4cb97b..678da31 100644 --- a/remoting/protocol/content_description.h +++ b/remoting/protocol/content_description.h @@ -26,10 +26,10 @@ namespace protocol { // interface does not need to depend on libjingle. class ContentDescription : public cricket::ContentDescription { public: - explicit ContentDescription(const CandidateSessionConfig* config, - const std::string& auth_token, - const std::string& master_key, - const std::string& certificate); + ContentDescription(const CandidateSessionConfig* config, + const std::string& auth_token, + const std::string& master_key, + const std::string& certificate); virtual ~ContentDescription(); const CandidateSessionConfig* config() const { |