| Index: chrome/browser/chromeos/login/background_view.cc
|
| diff --git a/chrome/browser/chromeos/login/background_view.cc b/chrome/browser/chromeos/login/background_view.cc
|
| index aa008470e9ef6f5c311b7a8f0fb02868d4500d27..07ac42723285f53871fc1817b35691db7876b49b 100644
|
| --- a/chrome/browser/chromeos/login/background_view.cc
|
| +++ b/chrome/browser/chromeos/login/background_view.cc
|
| @@ -74,30 +74,6 @@ int GetStepId(size_t step) {
|
| }
|
| }
|
|
|
| -// The same as TextButton but switches cursor to hand cursor when mouse
|
| -// is over the button.
|
| -class TextButtonWithHandCursorOver : public views::TextButton {
|
| - public:
|
| - TextButtonWithHandCursorOver(views::ButtonListener* listener,
|
| - const std::wstring& text)
|
| - : views::TextButton(listener, text) {
|
| - }
|
| -
|
| - virtual ~TextButtonWithHandCursorOver() {}
|
| -
|
| - virtual gfx::NativeCursor GetCursorForPoint(
|
| - ui::EventType event_type,
|
| - const gfx::Point& p) {
|
| - if (!IsEnabled()) {
|
| - return NULL;
|
| - }
|
| - return gfx::GetCursor(GDK_HAND2);
|
| - }
|
| -
|
| - private:
|
| - DISALLOW_COPY_AND_ASSIGN(TextButtonWithHandCursorOver);
|
| -};
|
| -
|
| // This gets rid of the ugly X default cursor.
|
| static void ResetXCursor() {
|
| // TODO(sky): nuke this once new window manager is in place.
|
|
|