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

Unified Diff: content/browser/renderer_host/backing_store_manager.cc

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
Index: content/browser/renderer_host/backing_store_manager.cc
diff --git a/content/browser/renderer_host/backing_store_manager.cc b/content/browser/renderer_host/backing_store_manager.cc
index 59cf785066e413ffcd22283279fb87873fd335d8..62832e88487d56bf2f1648340c7104f148c15da6 100644
--- a/content/browser/renderer_host/backing_store_manager.cc
+++ b/content/browser/renderer_host/backing_store_manager.cc
@@ -12,6 +12,8 @@
#include "content/browser/renderer_host/render_widget_host_impl.h"
#include "content/public/common/content_switches.h"
+using content::RenderWidgetHost;
+
namespace {
// There are two separate caches, |large_cache| and |small_cache|. large_cache
@@ -145,8 +147,8 @@ BackingStore* CreateBackingStore(RenderWidgetHost* host,
} else {
cache = small_cache;
}
- BackingStore* backing_store =
- RenderWidgetHostImpl::From(host)->AllocBackingStore(backing_store_size);
+ BackingStore* backing_store = content::RenderWidgetHostImpl::From(
+ host)->AllocBackingStore(backing_store_size);
if (backing_store)
cache->Put(host, backing_store);
return backing_store;
« no previous file with comments | « content/browser/renderer_host/backing_store_manager.h ('k') | content/browser/renderer_host/backing_store_skia.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698