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

Unified Diff: content/browser/renderer_host/backing_store.h

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to review comments. Created 8 years, 9 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/intents/intent_injector.cc ('k') | content/browser/renderer_host/backing_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/backing_store.h
diff --git a/content/browser/renderer_host/backing_store.h b/content/browser/renderer_host/backing_store.h
index ddb7369e78d35931027948ce99ed4b87c801b09c..203f8de7b6f8f8b5318add743936f1da34cd3a5f 100644
--- a/content/browser/renderer_host/backing_store.h
+++ b/content/browser/renderer_host/backing_store.h
@@ -15,7 +15,6 @@
#include "ui/gfx/surface/transport_dib.h"
class RenderProcessHost;
-class RenderWidgetHost;
namespace gfx {
class Rect;
@@ -23,6 +22,7 @@ class Rect;
namespace content {
class RenderProcessHost;
+class RenderWidgetHost;
}
namespace skia {
@@ -34,7 +34,9 @@ class CONTENT_EXPORT BackingStore {
public:
virtual ~BackingStore();
- RenderWidgetHost* render_widget_host() const { return render_widget_host_; }
+ content::RenderWidgetHost* render_widget_host() const {
+ return render_widget_host_;
+ }
const gfx::Size& size() { return size_; }
// The number of bytes that this backing store consumes. The default
@@ -72,11 +74,11 @@ class CONTENT_EXPORT BackingStore {
const gfx::Size& view_size) = 0;
protected:
// Can only be constructed via subclasses.
- BackingStore(RenderWidgetHost* widget, const gfx::Size& size);
+ BackingStore(content::RenderWidgetHost* widget, const gfx::Size& size);
private:
// The owner of this backing store.
- RenderWidgetHost* render_widget_host_;
+ content::RenderWidgetHost* render_widget_host_;
// The size of the backing store.
gfx::Size size_;
« no previous file with comments | « content/browser/intents/intent_injector.cc ('k') | content/browser/renderer_host/backing_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698