diff options
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/child_thread.cc | 14 | ||||
-rw-r--r-- | chrome/common/child_thread.h | 7 |
2 files changed, 15 insertions, 6 deletions
diff --git a/chrome/common/child_thread.cc b/chrome/common/child_thread.cc index db3c4c5..1d1f071 100644 --- a/chrome/common/child_thread.cc +++ b/chrome/common/child_thread.cc @@ -14,13 +14,21 @@ #include "webkit/glue/webkit_glue.h" -ChildThread::ChildThread() - : check_with_browser_before_shutdown_(false), - message_loop_(MessageLoop::current()) { +ChildThread::ChildThread() { channel_name_ = WideToASCII( CommandLine::ForCurrentProcess()->GetSwitchValue( switches::kProcessChannelID)); + Init(); +} + +ChildThread::ChildThread(const std::string channel_name) + : channel_name_(channel_name) { + Init(); +} +void ChildThread::Init() { + check_with_browser_before_shutdown_ = false; + message_loop_ = MessageLoop::current(); if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kUserAgent)) { webkit_glue::SetUserAgent(WideToUTF8( CommandLine::ForCurrentProcess()->GetSwitchValue( diff --git a/chrome/common/child_thread.h b/chrome/common/child_thread.h index 86eae4c..a7074c7 100644 --- a/chrome/common/child_thread.h +++ b/chrome/common/child_thread.h @@ -19,6 +19,8 @@ class ChildThread : public IPC::Channel::Listener, public: // Creates the thread. ChildThread(); + // Used for single-process mode. + ChildThread(const std::string channel_name); virtual ~ChildThread(); // IPC::Message::Sender implementation: @@ -40,9 +42,6 @@ class ChildThread : public IPC::Channel::Listener, protected: friend class ChildProcess; - // Overrides the channel name. Used for --single-process mode. - void SetChannelName(const std::string& name) { channel_name_ = name; } - // Called when the process refcount is 0. void OnProcessFinalRelease(); @@ -51,6 +50,8 @@ class ChildThread : public IPC::Channel::Listener, IPC::SyncChannel* channel() { return channel_.get(); } private: + void Init(); + // IPC::Channel::Listener implementation: virtual void OnMessageReceived(const IPC::Message& msg); virtual void OnChannelError(); |