summaryrefslogtreecommitdiffstats
path: root/content/browser/utility_process_host_impl.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-24 00:26:19 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-24 00:26:19 +0000
commit130757671de6d0dc4b54dd3ef11c1b9eb5f039cc (patch)
tree0c92593a755e31425f69d8c3c345fff10287c4ce /content/browser/utility_process_host_impl.h
parent375abf5c85ab185e3d659cde1e585aff2f8e6b3a (diff)
downloadchromium_src-130757671de6d0dc4b54dd3ef11c1b9eb5f039cc.zip
chromium_src-130757671de6d0dc4b54dd3ef11c1b9eb5f039cc.tar.gz
chromium_src-130757671de6d0dc4b54dd3ef11c1b9eb5f039cc.tar.bz2
Move the remaning files in content\common to the content namespace.
Review URL: https://codereview.chromium.org/11235068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163732 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/utility_process_host_impl.h')
-rw-r--r--content/browser/utility_process_host_impl.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/content/browser/utility_process_host_impl.h b/content/browser/utility_process_host_impl.h
index e449412..4007881 100644
--- a/content/browser/utility_process_host_impl.h
+++ b/content/browser/utility_process_host_impl.h
@@ -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 @@ class CONTENT_EXPORT UtilityProcessHostImpl
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 @@ class CONTENT_EXPORT UtilityProcessHostImpl
DISALLOW_COPY_AND_ASSIGN(UtilityProcessHostImpl);
};
+} // namespace content
+
#endif // CONTENT_BROWSER_UTILITY_PROCESS_HOST_IMPL_H_