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

Unified Diff: chrome/browser/renderer_host/render_widget_host.cc

Issue 19486: Lint cleanup. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 11 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: chrome/browser/renderer_host/render_widget_host.cc
===================================================================
--- chrome/browser/renderer_host/render_widget_host.cc (revision 8931)
+++ chrome/browser/renderer_host/render_widget_host.cc (working copy)
@@ -194,11 +194,11 @@
DCHECK(!is_hidden_) << "GetBackingStore called while hidden!";
// We might have a cached backing store that we can reuse!
- BackingStore* backing_store =
+ BackingStore* backing_store =
BackingStoreManager::GetBackingStore(this, current_size_);
// If we fail to find a backing store in the cache, send out a request
// to the renderer to paint the view if required.
- if (!backing_store && !repaint_ack_pending_ && !resize_ack_pending_ &&
+ if (!backing_store && !repaint_ack_pending_ && !resize_ack_pending_ &&
!view_being_painted_) {
repaint_start_time_ = TimeTicks::Now();
repaint_ack_pending_ = true;
@@ -562,7 +562,7 @@
gfx::Rect view_rect(0, 0, view_size.width(), view_size.height());
bool needs_full_paint = false;
- BackingStore* backing_store =
+ BackingStore* backing_store =
BackingStoreManager::PrepareBackingStore(this, view_rect,
process_->process().handle(),
bitmap, bitmap_rect,

Powered by Google App Engine
This is Rietveld 408576698