| Index: ui/gfx/compositor/compositor_gl.cc
|
| diff --git a/ui/gfx/compositor/compositor_gl.cc b/ui/gfx/compositor/compositor_gl.cc
|
| index c9e6dfa2b41122513ca88e7c2272c661f9aa095c..01d7bdf1fc482b828a6178b810ad652d99cbe501 100644
|
| --- a/ui/gfx/compositor/compositor_gl.cc
|
| +++ b/ui/gfx/compositor/compositor_gl.cc
|
| @@ -473,7 +473,7 @@ Texture* CompositorGL::CreateTexture() {
|
| return texture;
|
| }
|
|
|
| -void CompositorGL::NotifyStart() {
|
| +void CompositorGL::OnNotifyStart() {
|
| started_ = true;
|
| gl_context_->MakeCurrent(gl_surface_.get());
|
| glViewport(0, 0, size().width(), size().height());
|
| @@ -487,7 +487,7 @@ void CompositorGL::NotifyStart() {
|
| // Do not clear in release: root layer is responsible for drawing every pixel.
|
| }
|
|
|
| -void CompositorGL::NotifyEnd() {
|
| +void CompositorGL::OnNotifyEnd() {
|
| DCHECK(started_);
|
| gl_surface_->SwapBuffers();
|
| started_ = false;
|
|
|