Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Unified Diff: content/browser/utility_process_host_impl.h

Issue 11235068: Move the remaning files in content\common to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_
« no previous file with comments | « content/browser/renderer_host/render_sandbox_host_linux.cc ('k') | content/browser/utility_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698