OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_BACKGROUND_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_BACKGROUND_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_BACKGROUND_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_BACKGROUND_VIEW_H_ |
7 | 7 |
8 #include "chrome/browser/chromeos/boot_times_loader.h" | 8 #include "chrome/browser/chromeos/boot_times_loader.h" |
9 #include "chrome/browser/chromeos/cros/cros_library.h" | 9 #include "chrome/browser/chromeos/cros/cros_library.h" |
10 #include "chrome/browser/chromeos/version_loader.h" | 10 #include "chrome/browser/chromeos/version_loader.h" |
(...skipping 29 matching lines...) Expand all Loading... |
40 protected: | 40 protected: |
41 // Overridden from views::View: | 41 // Overridden from views::View: |
42 virtual void Paint(gfx::Canvas* canvas); | 42 virtual void Paint(gfx::Canvas* canvas); |
43 virtual void Layout(); | 43 virtual void Layout(); |
44 virtual void ChildPreferredSizeChanged(View* child); | 44 virtual void ChildPreferredSizeChanged(View* child); |
45 virtual void LocaleChanged(); | 45 virtual void LocaleChanged(); |
46 | 46 |
47 // Overridden from StatusAreaHost: | 47 // Overridden from StatusAreaHost: |
48 virtual Profile* GetProfile() const { return NULL; } | 48 virtual Profile* GetProfile() const { return NULL; } |
49 virtual gfx::NativeWindow GetNativeWindow() const; | 49 virtual gfx::NativeWindow GetNativeWindow() const; |
| 50 virtual void ExecuteBrowserCommand(int id) const {} |
50 virtual bool ShouldOpenButtonOptions( | 51 virtual bool ShouldOpenButtonOptions( |
51 const views::View* button_view) const; | 52 const views::View* button_view) const; |
52 virtual void OpenButtonOptions(const views::View* button_view) const; | 53 virtual void OpenButtonOptions(const views::View* button_view) const; |
53 virtual bool IsButtonVisible(const views::View* button_view) const; | 54 virtual bool IsButtonVisible(const views::View* button_view) const; |
54 virtual bool IsBrowserMode() const; | 55 virtual bool IsBrowserMode() const; |
55 | 56 |
56 private: | 57 private: |
57 // Creates and adds the status_area. | 58 // Creates and adds the status_area. |
58 void InitStatusArea(); | 59 void InitStatusArea(); |
59 // Creates and adds the labels for version and boot time. | 60 // Creates and adds the labels for version and boot time. |
(...skipping 27 matching lines...) Expand all Loading... |
87 // manager. | 88 // manager. |
88 // TODO(sky): nuke this when the wm knows when chrome has painted. | 89 // TODO(sky): nuke this when the wm knows when chrome has painted. |
89 bool did_paint_; | 90 bool did_paint_; |
90 | 91 |
91 DISALLOW_COPY_AND_ASSIGN(BackgroundView); | 92 DISALLOW_COPY_AND_ASSIGN(BackgroundView); |
92 }; | 93 }; |
93 | 94 |
94 } // namespace chromeos | 95 } // namespace chromeos |
95 | 96 |
96 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_BACKGROUND_VIEW_H_ | 97 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_BACKGROUND_VIEW_H_ |
OLD | NEW |