| Index: content/browser/utility_process_host.h
|
| diff --git a/content/browser/utility_process_host.h b/content/browser/utility_process_host.h
|
| index 23d749a867180df4e2bf0cc524a4f5bc642f8aae..82969aa1c585eafcf3248bb47319f796372ee5c2 100644
|
| --- a/content/browser/utility_process_host.h
|
| +++ b/content/browser/utility_process_host.h
|
| @@ -49,7 +49,8 @@ class CONTENT_EXPORT UtilityProcessHost : public BrowserChildProcessHost {
|
| DISALLOW_COPY_AND_ASSIGN(Client);
|
| };
|
|
|
| - UtilityProcessHost(Client* client, BrowserThread::ID client_thread_id);
|
| + UtilityProcessHost(Client* client,
|
| + content::BrowserThread::ID client_thread_id);
|
| virtual ~UtilityProcessHost();
|
|
|
| // BrowserChildProcessHost override
|
| @@ -87,7 +88,7 @@ class CONTENT_EXPORT UtilityProcessHost : public BrowserChildProcessHost {
|
|
|
| // A pointer to our client interface, who will be informed of progress.
|
| scoped_refptr<Client> client_;
|
| - BrowserThread::ID client_thread_id_;
|
| + content::BrowserThread::ID client_thread_id_;
|
| // True when running in batch mode, i.e., StartBatchMode() has been called
|
| // and the utility process will run until EndBatchMode().
|
| bool is_batch_mode_;
|
|
|