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

Unified Diff: ui/gl/scoped_binders.cc

Issue 2268993003: [Command Buffer] Coding style: FrameBuffer -> Framebuffer to be comformant (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: code rebase Created 4 years, 4 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 | « ui/gl/scoped_binders.h ('k') | ui/gl/yuv_to_rgb_converter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/scoped_binders.cc
diff --git a/ui/gl/scoped_binders.cc b/ui/gl/scoped_binders.cc
index f89a6b3b164a3cdbbe0b0ffca001ae2cd33d44b3..62f277dfb7865df6c83d10cec560f47be1e8fec6 100644
--- a/ui/gl/scoped_binders.cc
+++ b/ui/gl/scoped_binders.cc
@@ -9,7 +9,7 @@
namespace gl {
-ScopedFrameBufferBinder::ScopedFrameBufferBinder(unsigned int fbo)
+ScopedFramebufferBinder::ScopedFramebufferBinder(unsigned int fbo)
: state_restorer_(!GLContext::GetCurrent()
? NULL
: GLContext::GetCurrent()->GetGLStateRestorer()),
@@ -19,7 +19,7 @@ ScopedFrameBufferBinder::ScopedFrameBufferBinder(unsigned int fbo)
glBindFramebufferEXT(GL_FRAMEBUFFER, fbo);
}
-ScopedFrameBufferBinder::~ScopedFrameBufferBinder() {
+ScopedFramebufferBinder::~ScopedFramebufferBinder() {
if (state_restorer_) {
DCHECK(!!GLContext::GetCurrent());
DCHECK_EQ(state_restorer_, GLContext::GetCurrent()->GetGLStateRestorer());
« no previous file with comments | « ui/gl/scoped_binders.h ('k') | ui/gl/yuv_to_rgb_converter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698