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

Unified Diff: ui/gfx/compositor/compositor_gl.h

Issue 7461152: Gets rid of chrome being cleared for a moment when keyboard is hidden (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Modified variable name in all relevant files Created 9 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
Index: ui/gfx/compositor/compositor_gl.h
diff --git a/ui/gfx/compositor/compositor_gl.h b/ui/gfx/compositor/compositor_gl.h
index 716af7eb6829c497f527624d6d7abf24f303ffd4..9699955abfa5ed9e2e70958b3701f135be7a1e71 100644
--- a/ui/gfx/compositor/compositor_gl.h
+++ b/ui/gfx/compositor/compositor_gl.h
@@ -36,7 +36,7 @@ class TextureGL : public Texture {
virtual void Draw(const ui::TextureDrawParams& params) OVERRIDE;
virtual void Draw(const ui::TextureDrawParams& params,
- const gfx::Rect& clip_bounds) OVERRIDE;
+ const gfx::Rect& clip_bounds_in_texture) OVERRIDE;
protected:
TextureGL(CompositorGL* compositor, const gfx::Size& size);
@@ -46,7 +46,7 @@ class TextureGL : public Texture {
// Only the region defined by draw_bounds will be drawn.
void DrawInternal(const TextureProgramGL& program,
const ui::TextureDrawParams& params,
- const gfx::Rect& clip_bounds);
+ const gfx::Rect& clip_bounds_in_texture);
unsigned int texture_id_;
gfx::Size size_;

Powered by Google App Engine
This is Rietveld 408576698