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

Unified Diff: content/shell/renderer/ipc_echo.h

Issue 565013003: Changing the order of initialization WeakPtrFactory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolving the build error Created 6 years, 3 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 | « content/gpu/gpu_watchdog_thread.cc ('k') | content/shell/renderer/ipc_echo.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/renderer/ipc_echo.h
diff --git a/content/shell/renderer/ipc_echo.h b/content/shell/renderer/ipc_echo.h
index 57a535120d1c32876ef0405bca2494e7a52091fa..71624cf1d8bcd21cdc06657aff2edcbc0e83fa32 100644
--- a/content/shell/renderer/ipc_echo.h
+++ b/content/shell/renderer/ipc_echo.h
@@ -41,12 +41,14 @@ class IPCEcho : public base::SupportsWeakPtr<IPCEcho> {
int last_echo_id() const { return last_echo_id_; }
int last_echo_size() const { return last_echo_size_; }
- base::WeakPtrFactory<IPCEcho> weak_factory_;
blink::WebDocument document_;
IPC::Sender* sender_;
int routing_id_;
int last_echo_id_;
int last_echo_size_;
+
+ base::WeakPtrFactory<IPCEcho> weak_factory_;
+
};
} // namespace content
« no previous file with comments | « content/gpu/gpu_watchdog_thread.cc ('k') | content/shell/renderer/ipc_echo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698