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

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

Issue 10804031: Move more files into the content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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/renderer_host/backing_store.h ('k') | content/browser/renderer_host/backing_store_aura.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/backing_store.cc
===================================================================
--- content/browser/renderer_host/backing_store.cc (revision 147462)
+++ content/browser/renderer_host/backing_store.cc (working copy)
@@ -4,8 +4,9 @@
#include "content/browser/renderer_host/backing_store.h"
-BackingStore::BackingStore(content::RenderWidgetHost* widget,
- const gfx::Size& size)
+namespace content {
+
+BackingStore::BackingStore(RenderWidgetHost* widget, const gfx::Size& size)
: render_widget_host_(widget),
size_(size) {
}
@@ -16,3 +17,5 @@
size_t BackingStore::MemorySize() {
return size_.GetArea() * 4;
}
+
+} // namespace content
« no previous file with comments | « content/browser/renderer_host/backing_store.h ('k') | content/browser/renderer_host/backing_store_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698