summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
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) {
}