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

Unified Diff: chrome/browser/ui/views/tabs/side_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
« no previous file with comments | « chrome/browser/ui/views/tabs/dragged_tab_view.cc ('k') | chrome/browser/ui/views/tabs/tab_strip.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/tabs/side_tab_strip.cc
===================================================================
--- chrome/browser/ui/views/tabs/side_tab_strip.cc (revision 75035)
+++ chrome/browser/ui/views/tabs/side_tab_strip.cc (working copy)
@@ -131,19 +131,19 @@
// Paint the new tab and separator first so that any tabs animating appear on
// top.
- separator_->ProcessPaint(canvas);
- newtab_button_->ProcessPaint(canvas);
+ separator_->Paint(canvas);
+ newtab_button_->Paint(canvas);
for (int i = tab_count() - 1; i >= 0; --i) {
BaseTab* tab = base_tab_at_tab_index(i);
if (tab->dragging())
dragging_tab = tab;
else
- tab->ProcessPaint(canvas);
+ tab->Paint(canvas);
}
if (dragging_tab)
- dragging_tab->ProcessPaint(canvas);
+ dragging_tab->Paint(canvas);
}
BaseTab* SideTabStrip::CreateTab() {
« no previous file with comments | « chrome/browser/ui/views/tabs/dragged_tab_view.cc ('k') | chrome/browser/ui/views/tabs/tab_strip.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698