Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(860)

Unified Diff: content/browser/renderer_host/gpu_message_filter.cc

Issue 7477008: Remove explicit keyword from multi-argument constructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_frame/test/test_server.h ('k') | content/browser/zygote_main_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/gpu_message_filter.cc
diff --git a/content/browser/renderer_host/gpu_message_filter.cc b/content/browser/renderer_host/gpu_message_filter.cc
index 600de3363373f984ca0c0ec40697317e229878c0..22b4c7abba44d680737aca9a457349e8c056f780 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) {
« no previous file with comments | « chrome_frame/test/test_server.h ('k') | content/browser/zygote_main_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698