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

Side by Side Diff: ash/common/system/chromeos/audio/tray_audio.cc

Issue 2780743002: Remove pre-MD code from TrayDetailsView. (Closed)
Patch Set: rebase + fix Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « ash/BUILD.gn ('k') | ash/common/system/tray/special_popup_row.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "ash/common/system/chromeos/audio/tray_audio.h" 5 #include "ash/common/system/chromeos/audio/tray_audio.h"
6 6
7 #include "ash/common/system/chromeos/audio/audio_detailed_view.h" 7 #include "ash/common/system/chromeos/audio/audio_detailed_view.h"
8 #include "ash/common/system/chromeos/audio/volume_view.h" 8 #include "ash/common/system/chromeos/audio/volume_view.h"
9 #include "ash/common/system/tray/system_tray.h" 9 #include "ash/common/system/tray/system_tray.h"
10 #include "ash/common/system/tray/tray_constants.h" 10 #include "ash/common/system/tray/tray_constants.h"
11 #include "ash/common/wm_shell.h" 11 #include "ash/common/wm_shell.h"
12 #include "ash/common/wm_window.h" 12 #include "ash/common/wm_window.h"
13 #include "ash/resources/vector_icons/vector_icons.h"
13 #include "ash/root_window_controller.h" 14 #include "ash/root_window_controller.h"
14 #include "chromeos/dbus/dbus_thread_manager.h" 15 #include "chromeos/dbus/dbus_thread_manager.h"
15 #include "ui/display/display.h" 16 #include "ui/display/display.h"
16 #include "ui/display/manager/managed_display_info.h" 17 #include "ui/display/manager/managed_display_info.h"
17 #include "ui/display/screen.h" 18 #include "ui/display/screen.h"
18 #include "ui/views/view.h" 19 #include "ui/views/view.h"
19 20
20 namespace ash { 21 namespace ash {
21 22
22 using chromeos::CrasAudioHandler; 23 using chromeos::CrasAudioHandler;
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 volume_view_->SetVolumeLevel( 194 volume_view_->SetVolumeLevel(
194 CrasAudioHandler::Get()->GetOutputVolumePercent() / 100.0f); 195 CrasAudioHandler::Get()->GetOutputVolumePercent() / 100.0f);
195 volume_view_->Update(); 196 volume_view_->Update();
196 } 197 }
197 198
198 if (audio_detail_view_) 199 if (audio_detail_view_)
199 audio_detail_view_->Update(); 200 audio_detail_view_->Update();
200 } 201 }
201 202
202 } // namespace ash 203 } // namespace ash
OLDNEW
« no previous file with comments | « ash/BUILD.gn ('k') | ash/common/system/tray/special_popup_row.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698