summaryrefslogtreecommitdiffstats
path: root/content
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 /content
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 'content')
-rw-r--r--content/browser/renderer_host/gpu_message_filter.cc7
-rw-r--r--content/browser/zygote_main_linux.cc5
-rw-r--r--content/common/process_watcher_posix.cc2
3 files changed, 6 insertions, 8 deletions
diff --git a/content/browser/renderer_host/gpu_message_filter.cc b/content/browser/renderer_host/gpu_message_filter.cc
index 600de33..22b4c7a 100644
--- a/content/browser/renderer_host/gpu_message_filter.cc
+++ b/content/browser/renderer_host/gpu_message_filter.cc
@@ -52,10 +52,9 @@ class EstablishChannelCallback
base::ProcessHandle,
const GPUInfo&> > {
public:
- explicit EstablishChannelCallback(GpuMessageFilter* filter,
- IPC::Message* reply) :
- filter_(filter->AsWeakPtr()),
- reply_(reply) {
+ EstablishChannelCallback(GpuMessageFilter* filter, IPC::Message* reply)
+ : filter_(filter->AsWeakPtr()),
+ reply_(reply) {
}
virtual void RunWithParams(const TupleType& params) {
diff --git a/content/browser/zygote_main_linux.cc b/content/browser/zygote_main_linux.cc
index bf72711..40f238c 100644
--- a/content/browser/zygote_main_linux.cc
+++ b/content/browser/zygote_main_linux.cc
@@ -99,9 +99,8 @@ static void SELinuxTransitionToTypeOrDie(const char* type) {
// runs it.
class Zygote {
public:
- explicit Zygote(int sandbox_flags, ZygoteForkDelegate* helper)
- : sandbox_flags_(sandbox_flags),
- helper_(helper) {
+ Zygote(int sandbox_flags, ZygoteForkDelegate* helper)
+ : sandbox_flags_(sandbox_flags), helper_(helper) {
}
bool ProcessRequests() {
diff --git a/content/common/process_watcher_posix.cc b/content/common/process_watcher_posix.cc
index 85f8ace..ebad678 100644
--- a/content/common/process_watcher_posix.cc
+++ b/content/common/process_watcher_posix.cc
@@ -32,7 +32,7 @@ static bool IsChildDead(pid_t child) {
// If the child doesn't exit within a couple of seconds, kill it.
class BackgroundReaper : public base::PlatformThread::Delegate {
public:
- explicit BackgroundReaper(pid_t child, unsigned timeout)
+ BackgroundReaper(pid_t child, unsigned timeout)
: child_(child),
timeout_(timeout) {
}