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); |
} |