summaryrefslogtreecommitdiffstats
path: root/content/browser/renderer_host/test_backing_store.cc
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-21 01:29:58 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-21 01:29:58 +0000
commitfc4616f709326079afa312054c25132b821a2b2a (patch)
treeb7efeb3f51ac364da3b52c085c9417311e19a26a /content/browser/renderer_host/test_backing_store.cc
parentc35a22196ec63f3677b77c38b7b5768078d0ecaf (diff)
downloadchromium_src-fc4616f709326079afa312054c25132b821a2b2a.zip
chromium_src-fc4616f709326079afa312054c25132b821a2b2a.tar.gz
chromium_src-fc4616f709326079afa312054c25132b821a2b2a.tar.bz2
Move more files into the content namespace.
Review URL: https://chromiumcodereview.appspot.com/10804031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147756 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/renderer_host/test_backing_store.cc')
-rw-r--r--content/browser/renderer_host/test_backing_store.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/content/browser/renderer_host/test_backing_store.cc b/content/browser/renderer_host/test_backing_store.cc
index 84dc74d..9537cd2 100644
--- a/content/browser/renderer_host/test_backing_store.cc
+++ b/content/browser/renderer_host/test_backing_store.cc
@@ -1,10 +1,12 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/renderer_host/test_backing_store.h"
-TestBackingStore::TestBackingStore(content::RenderWidgetHost* widget,
+namespace content {
+
+TestBackingStore::TestBackingStore(RenderWidgetHost* widget,
const gfx::Size& size)
: BackingStore(widget, size) {
}
@@ -13,7 +15,7 @@ TestBackingStore::~TestBackingStore() {
}
void TestBackingStore::PaintToBackingStore(
- content::RenderProcessHost* process,
+ RenderProcessHost* process,
TransportDIB::Id bitmap,
const gfx::Rect& bitmap_rect,
const std::vector<gfx::Rect>& copy_rects,
@@ -32,3 +34,5 @@ void TestBackingStore::ScrollBackingStore(int dx, int dy,
const gfx::Rect& clip_rect,
const gfx::Size& view_size) {
}
+
+} // namespace content