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

Unified Diff: Source/core/html/canvas/WebGLFramebuffer.h

Issue 1115553002: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 8 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 | « Source/core/html/canvas/WebGLDrawBuffers.cpp ('k') | Source/core/html/canvas/WebGLFramebuffer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/WebGLFramebuffer.h
diff --git a/Source/core/html/canvas/WebGLFramebuffer.h b/Source/core/html/canvas/WebGLFramebuffer.h
index c4d0d7345dcb74804ca9cfe5919950a2fce2373f..f15ae11db68379276210d8d5091a95b5b065b57c 100644
--- a/Source/core/html/canvas/WebGLFramebuffer.h
+++ b/Source/core/html/canvas/WebGLFramebuffer.h
@@ -54,9 +54,9 @@ public:
virtual WebGLSharedObject* object() const = 0;
virtual bool isSharedObject(WebGLSharedObject*) const = 0;
virtual bool valid() const = 0;
- virtual void onDetached(blink::WebGraphicsContext3D*) = 0;
- virtual void attach(blink::WebGraphicsContext3D*, GLenum attachment) = 0;
- virtual void unattach(blink::WebGraphicsContext3D*, GLenum attachment) = 0;
+ virtual void onDetached(WebGraphicsContext3D*) = 0;
+ virtual void attach(WebGraphicsContext3D*, GLenum attachment) = 0;
+ virtual void unattach(WebGraphicsContext3D*, GLenum attachment) = 0;
DEFINE_INLINE_VIRTUAL_TRACE() { }
@@ -84,7 +84,7 @@ public:
// readPixels, copyTexImage2D, copyTexSubImage2D if this framebuffer is
// currently bound.
// Return false if the framebuffer is incomplete.
- bool onAccess(blink::WebGraphicsContext3D*, const char** reason);
+ bool onAccess(WebGraphicsContext3D*, const char** reason);
// Software version of glCheckFramebufferStatus(), except that when
// FRAMEBUFFER_COMPLETE is returned, it is still possible for
@@ -109,7 +109,7 @@ protected:
explicit WebGLFramebuffer(WebGLRenderingContextBase*);
bool hasObject() const override { return m_object != 0; }
- void deleteObjectImpl(blink::WebGraphicsContext3D*) override;
+ void deleteObjectImpl(WebGraphicsContext3D*) override;
private:
WebGLAttachment* getAttachment(GLenum) const;
« no previous file with comments | « Source/core/html/canvas/WebGLDrawBuffers.cpp ('k') | Source/core/html/canvas/WebGLFramebuffer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698