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

Unified Diff: content/browser/aura/gpu_process_transport_factory.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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/android/vibration_message_filter.cc ('k') | content/browser/aura/image_transport_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/aura/gpu_process_transport_factory.cc
diff --git a/content/browser/aura/gpu_process_transport_factory.cc b/content/browser/aura/gpu_process_transport_factory.cc
index be5fc2422e1257913392dd89ea9a4cea69e093f8..925a177a21aaa26fb384fd451c3577054ba4cec4 100644
--- a/content/browser/aura/gpu_process_transport_factory.cc
+++ b/content/browser/aura/gpu_process_transport_factory.cc
@@ -55,7 +55,7 @@ struct GpuProcessTransportFactory::PerCompositorData {
class OwnedTexture : public ui::Texture, ImageTransportFactoryObserver {
public:
- OwnedTexture(WebKit::WebGraphicsContext3D* host_context,
+ OwnedTexture(blink::WebGraphicsContext3D* host_context,
const gfx::Size& size,
float device_scale_factor,
unsigned int texture_id)
@@ -72,7 +72,7 @@ class OwnedTexture : public ui::Texture, ImageTransportFactoryObserver {
return texture_id_;
}
- virtual WebKit::WebGraphicsContext3D* HostContext3D() OVERRIDE {
+ virtual blink::WebGraphicsContext3D* HostContext3D() OVERRIDE {
return host_context_;
}
@@ -98,7 +98,7 @@ class OwnedTexture : public ui::Texture, ImageTransportFactoryObserver {
// The OnLostResources() callback will happen before this context
// pointer is destroyed.
- WebKit::WebGraphicsContext3D* host_context_;
+ blink::WebGraphicsContext3D* host_context_;
unsigned texture_id_;
DISALLOW_COPY_AND_ASSIGN(OwnedTexture);
@@ -107,7 +107,7 @@ class OwnedTexture : public ui::Texture, ImageTransportFactoryObserver {
class ImageTransportClientTexture : public OwnedTexture {
public:
ImageTransportClientTexture(
- WebKit::WebGraphicsContext3D* host_context,
+ blink::WebGraphicsContext3D* host_context,
float device_scale_factor)
: OwnedTexture(host_context,
gfx::Size(0, 0),
@@ -497,7 +497,7 @@ GpuProcessTransportFactory::CreateContextCommon(
int surface_id) {
if (!GpuDataManagerImpl::GetInstance()->CanUseGpuBrowserCompositor())
return scoped_ptr<WebGraphicsContext3DCommandBufferImpl>();
- WebKit::WebGraphicsContext3D::Attributes attrs;
+ blink::WebGraphicsContext3D::Attributes attrs;
attrs.shareResources = true;
attrs.depth = false;
attrs.stencil = false;
« no previous file with comments | « content/browser/android/vibration_message_filter.cc ('k') | content/browser/aura/image_transport_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698