OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_BRIGHTNESS_BUBBLE_VIEW_VIEWS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_BRIGHTNESS_BUBBLE_VIEW_VIEWS_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "base/basictypes.h" |
| 10 #include "chrome/browser/chromeos/setting_level_bubble_view_views.h" |
| 11 |
| 12 template <typename T> struct DefaultSingletonTraits; |
| 13 |
| 14 namespace views{ |
| 15 class Widget; |
| 16 } |
| 17 |
| 18 namespace chromeos { |
| 19 |
| 20 // Singleton class controlling brightness bubble. |
| 21 class BrightnessBubble { |
| 22 public: |
| 23 static BrightnessBubble* GetInstance(); |
| 24 static void ShowBubble(double percent, bool enabled); |
| 25 void UpdateWithoutShowingBubble(int level, bool enabled); |
| 26 void HideBubble(); |
| 27 |
| 28 private: |
| 29 friend struct DefaultSingletonTraits<BrightnessBubble>; |
| 30 |
| 31 // Bubble widget, owned by VolumeBubble. |
| 32 static views::Widget* widget_; |
| 33 BrightnessBubble(); |
| 34 virtual ~BrightnessBubble() {} |
| 35 |
| 36 DISALLOW_COPY_AND_ASSIGN(BrightnessBubble); |
| 37 }; |
| 38 |
| 39 } // namespace chromeos |
| 40 |
| 41 #endif // CHROME_BROWSER_CHROMEOS_BRIGHTNESS_BUBBLE_VIEW_VIEWS_H_ |
OLD | NEW |