diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-23 14:48:22 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-23 14:48:22 +0000 |
commit | fd1ff075d95a5edaf76ba7128b3094b8d3f97893 (patch) | |
tree | 48261ba5efc11562087e675aa0fecfd177a381cd /chrome/browser/browser_shutdown.cc | |
parent | 85cc8eb654c288f85ee1f463cddd2b0f088e92aa (diff) | |
download | chromium_src-fd1ff075d95a5edaf76ba7128b3094b8d3f97893.zip chromium_src-fd1ff075d95a5edaf76ba7128b3094b8d3f97893.tar.gz chromium_src-fd1ff075d95a5edaf76ba7128b3094b8d3f97893.tar.bz2 |
Extract first version of a RenderWidgetHost interface.
This begins the process of extracting RWH and RVH interfaces and
leaving RenderWidgetHostImpl and RenderViewImpl classes in content.
There will be parallel inheritance hierarchies, i.e. RWHImpl inherits
from RWH, RVH inherits from RWH, RVHImpl inherits from RVH and
RWHImpl. Thus, chrome will only see the interfaces.
I fully expect that some of the things chrome needs from the RVH
interface, once I introduce that, will more properly belong on the RWH
interface, in which case I expect to move them there. But first to
define the base interfaces.
BUG=98716
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=123227
Review URL: https://chromiumcodereview.appspot.com/9432027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123239 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_shutdown.cc')
-rw-r--r-- | chrome/browser/browser_shutdown.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/chrome/browser/browser_shutdown.cc b/chrome/browser/browser_shutdown.cc index 0626aae..76e5300 100644 --- a/chrome/browser/browser_shutdown.cc +++ b/chrome/browser/browser_shutdown.cc @@ -35,7 +35,6 @@ #include "chrome/common/pref_names.h" #include "chrome/common/switch_utils.h" #include "content/browser/renderer_host/render_view_host.h" -#include "content/browser/renderer_host/render_widget_host.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/render_process_host.h" #include "ui/base/resource/resource_bundle.h" |