| Index: content/browser/utility_process_host_impl.h
|
| ===================================================================
|
| --- content/browser/utility_process_host_impl.h (revision 163632)
|
| +++ content/browser/utility_process_host_impl.h (working copy)
|
| @@ -15,14 +15,15 @@
|
| #include "content/public/browser/browser_child_process_host_delegate.h"
|
| #include "content/public/browser/utility_process_host.h"
|
|
|
| +namespace content {
|
| class BrowserChildProcessHostImpl;
|
|
|
| class CONTENT_EXPORT UtilityProcessHostImpl
|
| - : public NON_EXPORTED_BASE(content::UtilityProcessHost),
|
| - public content::BrowserChildProcessHostDelegate {
|
| + : public NON_EXPORTED_BASE(UtilityProcessHost),
|
| + public BrowserChildProcessHostDelegate {
|
| public:
|
| - UtilityProcessHostImpl(content::UtilityProcessHostClient* client,
|
| - content::BrowserThread::ID client_thread_id);
|
| + UtilityProcessHostImpl(UtilityProcessHostClient* client,
|
| + BrowserThread::ID client_thread_id);
|
| virtual ~UtilityProcessHostImpl();
|
|
|
| // UtilityProcessHost implementation:
|
| @@ -48,8 +49,8 @@
|
| virtual void OnProcessCrashed(int exit_code) OVERRIDE;
|
|
|
| // A pointer to our client interface, who will be informed of progress.
|
| - scoped_refptr<content::UtilityProcessHostClient> client_;
|
| - content::BrowserThread::ID client_thread_id_;
|
| + scoped_refptr<UtilityProcessHostClient> client_;
|
| + 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_;
|
| @@ -74,4 +75,6 @@
|
| DISALLOW_COPY_AND_ASSIGN(UtilityProcessHostImpl);
|
| };
|
|
|
| +} // namespace content
|
| +
|
| #endif // CONTENT_BROWSER_UTILITY_PROCESS_HOST_IMPL_H_
|
|
|