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

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

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
Index: content/browser/renderer_host/backing_store_mac.h
===================================================================
--- content/browser/renderer_host/backing_store_mac.h (revision 147462)
+++ content/browser/renderer_host/backing_store_mac.h (working copy)
@@ -9,11 +9,13 @@
#include "base/mac/scoped_cftyperef.h"
#include "content/browser/renderer_host/backing_store.h"
+namespace content {
+
class BackingStoreMac : public BackingStore {
public:
// |size| is in view units, |device_scale_factor| is the backingScaleFactor.
// The pixel size of the backing store is size.Scale(device_scale_factor).
- BackingStoreMac(content::RenderWidgetHost* widget,
+ BackingStoreMac(RenderWidgetHost* widget,
const gfx::Size& size,
float device_scale_factor);
virtual ~BackingStoreMac();
@@ -32,7 +34,7 @@
// BackingStore implementation.
virtual size_t MemorySize() OVERRIDE;
virtual void PaintToBackingStore(
- content::RenderProcessHost* process,
+ RenderProcessHost* process,
TransportDIB::Id bitmap,
const gfx::Rect& bitmap_rect,
const std::vector<gfx::Rect>& copy_rects,
@@ -69,4 +71,6 @@
DISALLOW_COPY_AND_ASSIGN(BackingStoreMac);
};
+} // namespace content
+
#endif // CONTENT_BROWSER_RENDERER_HOST_BACKING_STORE_MAC_H_
« no previous file with comments | « content/browser/renderer_host/backing_store_gtk.cc ('k') | content/browser/renderer_host/backing_store_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698