| 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 {
|
|
|