| Index: chrome/browser/chromeos/login/rounded_view.h
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/rounded_view.h (revision 75035)
|
| +++ chrome/browser/chromeos/login/rounded_view.h (working copy)
|
| @@ -42,7 +42,7 @@
|
| RoundedView(const D1& val1, const D2& val2) : C(val1, val2) {}
|
|
|
| // Overrides views::View.
|
| - virtual void ProcessPaint(gfx::Canvas* canvas);
|
| + virtual void Paint(gfx::Canvas* canvas);
|
|
|
| protected:
|
| // Returns the path that will be used for a clip.
|
| @@ -58,12 +58,12 @@
|
| // RoundedView implementation.
|
|
|
| template <typename C>
|
| -void RoundedView<C>::ProcessPaint(gfx::Canvas* canvas) {
|
| +void RoundedView<C>::Paint(gfx::Canvas* canvas) {
|
| // Setup clip region.
|
| canvas->Save();
|
| canvas->AsCanvasSkia()->clipPath(GetClipPath());
|
| // Do original painting.
|
| - C::ProcessPaint(canvas);
|
| + C::Paint(canvas);
|
| canvas->Restore();
|
| // Add frame.
|
| DrawFrame(canvas);
|
|
|