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

Unified Diff: content/browser/browser_child_process_host_impl.h

Issue 9117006: Rename BrowserChildProcessHost implementation class to BrowserChildProcessHostImpl. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 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
« no previous file with comments | « content/browser/browser_child_process_host.cc ('k') | content/browser/browser_child_process_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_child_process_host_impl.h
===================================================================
--- content/browser/browser_child_process_host_impl.h (revision 118727)
+++ content/browser/browser_child_process_host_impl.h (working copy)
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_H_
-#define CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_H_
+#ifndef CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_
+#define CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_
#pragma once
#include <list>
@@ -25,21 +25,22 @@
// Plugins/workers and other child processes that live on the IO thread use this
// class. RenderProcessHostImpl is the main exception that doesn't use this
/// class because it lives on the UI thread.
-class CONTENT_EXPORT BrowserChildProcessHost :
- public NON_EXPORTED_BASE(content::BrowserChildProcessHost),
+class CONTENT_EXPORT BrowserChildProcessHostImpl :
+ public content::BrowserChildProcessHost,
public NON_EXPORTED_BASE(content::ChildProcessHostDelegate),
public ChildProcessLauncher::Client,
public base::WaitableEventWatcher::Delegate {
public:
- BrowserChildProcessHost(content::ProcessType type,
- content::BrowserChildProcessHostDelegate* delegate);
- virtual ~BrowserChildProcessHost();
+ BrowserChildProcessHostImpl(
+ content::ProcessType type,
+ content::BrowserChildProcessHostDelegate* delegate);
+ virtual ~BrowserChildProcessHostImpl();
// Terminates all child processes and deletes each BrowserChildProcessHost
// instance.
static void TerminateAll();
- // BrowserChildProcessHost implementation:
+ // BrowserChildProcessHostImpl implementation:
virtual bool Send(IPC::Message* message) OVERRIDE;
virtual void Launch(
#if defined(OS_WIN)
@@ -75,7 +76,7 @@
return delegate_;
}
- typedef std::list<BrowserChildProcessHost*> BrowserChildProcessList;
+ typedef std::list<BrowserChildProcessHostImpl*> BrowserChildProcessList;
private:
friend class content::BrowserChildProcessHostIterator;
@@ -104,9 +105,9 @@
#if defined(OS_WIN)
base::WaitableEventWatcher child_watcher_;
#else
- base::WeakPtrFactory<BrowserChildProcessHost> task_factory_;
+ base::WeakPtrFactory<BrowserChildProcessHostImpl> task_factory_;
#endif
bool disconnect_was_alive_;
};
-#endif // CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_H_
+#endif // CONTENT_BROWSER_BROWSER_CHILD_PROCESS_HOST_IMPL_H_
« no previous file with comments | « content/browser/browser_child_process_host.cc ('k') | content/browser/browser_child_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698