Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(337)

Unified Diff: ash/system/tray/system_tray.h

Issue 9753019: ash: Add a bluetooth entry in the uber tray. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ash/system/tray/system_tray.h
diff --git a/ash/system/tray/system_tray.h b/ash/system/tray/system_tray.h
index f06062d9710bc0b60c591b737ea04c479dca23dd..f38318011b1f0a52d4fff77306685dfe515eab5a 100644
--- a/ash/system/tray/system_tray.h
+++ b/ash/system/tray/system_tray.h
@@ -19,6 +19,7 @@ namespace ash {
class AccessibilityObserver;
class AudioObserver;
+class BluetoothObserver;
class BrightnessObserver;
class CapsLockObserver;
class ClockObserver;
@@ -65,6 +66,9 @@ class ASH_EXPORT SystemTray : public views::View,
AudioObserver* audio_observer() const {
return audio_observer_;
}
+ BluetoothObserver* bluetooth_observer() const {
+ return bluetooth_observer_;
+ }
BrightnessObserver* brightness_observer() const {
return brightness_observer_;
}
@@ -111,6 +115,7 @@ class ASH_EXPORT SystemTray : public views::View,
// These observers are not owned by the tray.
AccessibilityObserver* accessibility_observer_;
AudioObserver* audio_observer_;
+ BluetoothObserver* bluetooth_observer_;
BrightnessObserver* brightness_observer_;
CapsLockObserver* caps_lock_observer_;
ClockObserver* clock_observer_;

Powered by Google App Engine
This is Rietveld 408576698