| Index: ash/shell/lock_view.cc
|
| diff --git a/ash/shell/lock_view.cc b/ash/shell/lock_view.cc
|
| index 245bcee59ef77e36fc8de7644d211fb48e3c3b78..7fc11d731b646ea92f8906610258b16a1b205ba9 100644
|
| --- a/ash/shell/lock_view.cc
|
| +++ b/ash/shell/lock_view.cc
|
| @@ -31,7 +31,7 @@ class LockView : public views::WidgetDelegateView {
|
| private:
|
| // Overridden from View:
|
| virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE {
|
| - canvas->FillRect(SK_ColorYELLOW, GetLocalBounds());
|
| + canvas->FillRect(GetLocalBounds(), SK_ColorYELLOW);
|
| string16 text = ASCIIToUTF16("LOCKED!");
|
| int string_width = font_.GetStringWidth(text);
|
| canvas->DrawStringInt(text, font_, SK_ColorRED, (width() - string_width)/ 2,
|
|
|