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

Unified Diff: ash/common/system/tray/system_tray.cc

Issue 2483393002: chromeos: Combine TrayAudio and TrayAudioChromeOs classes (Closed)
Patch Set: cleanest diff ever Created 4 years, 1 month 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/common/system/tray/system_tray.cc
diff --git a/ash/common/system/tray/system_tray.cc b/ash/common/system/tray/system_tray.cc
index 731855c295c69d2d3a162aa40785ebb3186237a8..c76b272b2a21889d26755d12178e45c64739f13d 100644
--- a/ash/common/system/tray/system_tray.cc
+++ b/ash/common/system/tray/system_tray.cc
@@ -49,7 +49,7 @@
#include "ui/views/widget/widget.h"
#if defined(OS_CHROMEOS)
-#include "ash/common/system/chromeos/audio/tray_audio_chromeos.h"
+#include "ash/common/system/chromeos/audio/tray_audio.h"
#include "ash/common/system/chromeos/bluetooth/tray_bluetooth.h"
#include "ash/common/system/chromeos/brightness/tray_brightness.h"
#include "ash/common/system/chromeos/cast/tray_cast.h"
@@ -293,7 +293,7 @@ void SystemTray::CreateItems(SystemTrayDelegate* delegate) {
screen_share_tray_item_ = new ScreenShareTrayItem(this);
AddTrayItem(screen_share_tray_item_);
AddTrayItem(new MultiProfileMediaTrayItem(this));
- tray_audio_ = new TrayAudioChromeOs(this);
+ tray_audio_ = new TrayAudio(this);
AddTrayItem(tray_audio_);
AddTrayItem(new TrayBrightness(this));
AddTrayItem(new TrayCapsLock(this));

Powered by Google App Engine
This is Rietveld 408576698