diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-10 21:33:26 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-10 21:33:26 +0000 |
commit | bb024fea2619bb9b5be10c6ac62b04764fd5ce55 (patch) | |
tree | 9a645138456f1d6b30aa54ef53aeb3ee18dd9519 /chrome/service/service_process.h | |
parent | 7a5121f28527625ede1d1b09bef98ea2c65d0660 (diff) | |
download | chromium_src-bb024fea2619bb9b5be10c6ac62b04764fd5ce55.zip chromium_src-bb024fea2619bb9b5be10c6ac62b04764fd5ce55.tar.gz chromium_src-bb024fea2619bb9b5be10c6ac62b04764fd5ce55.tar.bz2 |
chrome: Use base::MessageLoop. (Part 1)
chrome/browser/* will be updated in another CL
BUG=236029
R=sky@chromium.org
Review URL: https://codereview.chromium.org/14314025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199547 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service/service_process.h')
-rw-r--r-- | chrome/service/service_process.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/service/service_process.h b/chrome/service/service_process.h index 8bc4445..aa57987 100644 --- a/chrome/service/service_process.h +++ b/chrome/service/service_process.h @@ -38,7 +38,7 @@ class ServiceProcess : public cloud_print::CloudPrintProxy::Client { // Initialize the ServiceProcess with the message loop that it should run on. // ServiceProcess takes ownership of |state|. - bool Initialize(MessageLoopForUI* message_loop, + bool Initialize(base::MessageLoopForUI* message_loop, const CommandLine& command_line, ServiceProcessState* state); @@ -134,7 +134,7 @@ class ServiceProcess : public cloud_print::CloudPrintProxy::Client { base::WaitableEvent shutdown_event_; // Pointer to the main message loop that host this object. - MessageLoop* main_message_loop_; + base::MessageLoop* main_message_loop_; // Count of currently enabled services in this process. int enabled_services_; |