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

Unified Diff: chrome/browser/ui/touch/tabs/touch_tab_strip.cc

Issue 6529037: Rename ProcessPaint to Paint() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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/ui/touch/tabs/touch_tab_strip.cc
===================================================================
--- chrome/browser/ui/touch/tabs/touch_tab_strip.cc (revision 75035)
+++ chrome/browser/ui/touch/tabs/touch_tab_strip.cc (working copy)
@@ -157,7 +157,7 @@
if (tab->dragging()) {
dragging_tab = tab;
} else if (!tab->IsSelected()) {
- tab->ProcessPaint(canvas);
+ tab->Paint(canvas);
} else {
selected_tab = tab;
}
@@ -176,11 +176,11 @@
// Paint the selected tab last, so it overlaps all the others.
if (selected_tab)
- selected_tab->ProcessPaint(canvas);
+ selected_tab->Paint(canvas);
// And the dragged tab.
if (dragging_tab)
- dragging_tab->ProcessPaint(canvas);
+ dragging_tab->Paint(canvas);
}
TouchTab* TouchTabStrip::GetTabAtTabDataIndex(int tab_data_index) const {
« no previous file with comments | « chrome/browser/chromeos/login/rounded_view.h ('k') | chrome/browser/ui/views/tab_contents/tab_contents_view_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698