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

Unified Diff: content/child/child_thread.cc

Issue 598483002: Fix WeakPtrFactory member ordering in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed order of friend class 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/child/child_thread.h ('k') | content/renderer/accessibility/renderer_accessibility_complete.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/child_thread.cc
diff --git a/content/child/child_thread.cc b/content/child/child_thread.cc
index 94847139c241682f420f6102bd2e236aa4396456..34e7491be140e10be9c26cfe0f342031bfea2515 100644
--- a/content/child/child_thread.cc
+++ b/content/child/child_thread.cc
@@ -213,15 +213,15 @@ bool ChildThread::ChildThreadMessageRouter::Send(IPC::Message* msg) {
ChildThread::ChildThread()
: router_(this),
- channel_connected_factory_(this),
- in_browser_process_(false) {
+ in_browser_process_(false),
+ channel_connected_factory_(this) {
Init(Options());
}
ChildThread::ChildThread(const Options& options)
: router_(this),
- channel_connected_factory_(this),
- in_browser_process_(true) {
+ in_browser_process_(true),
+ channel_connected_factory_(this) {
Init(options);
}
« no previous file with comments | « content/child/child_thread.h ('k') | content/renderer/accessibility/renderer_accessibility_complete.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698