| OLD | NEW |
| 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_delegate_chromeos.h" | 5 #include "ash/system/audio/tray_audio_delegate_chromeos.h" |
| 6 | 6 |
| 7 #include "ash/resources/vector_icons/vector_icons.h" | 7 #include "ash/resources/vector_icons/vector_icons.h" |
| 8 #include "chromeos/audio/cras_audio_handler.h" | 8 #include "chromeos/audio/cras_audio_handler.h" |
| 9 #include "ui/gfx/paint_vector_icon.h" | 9 #include "ui/gfx/paint_vector_icon.h" |
| 10 | 10 |
| 11 using chromeos::CrasAudioHandler; | 11 using chromeos::CrasAudioHandler; |
| 12 | 12 |
| 13 namespace ash { | 13 namespace ash { |
| 14 namespace system { | 14 namespace system { |
| 15 | 15 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 } | 66 } |
| 67 | 67 |
| 68 void TrayAudioDelegateChromeOs::SetActiveHDMIOutoutRediscoveringIfNecessary( | 68 void TrayAudioDelegateChromeOs::SetActiveHDMIOutoutRediscoveringIfNecessary( |
| 69 bool force_rediscovering) { | 69 bool force_rediscovering) { |
| 70 CrasAudioHandler::Get()->SetActiveHDMIOutoutRediscoveringIfNecessary( | 70 CrasAudioHandler::Get()->SetActiveHDMIOutoutRediscoveringIfNecessary( |
| 71 force_rediscovering); | 71 force_rediscovering); |
| 72 } | 72 } |
| 73 | 73 |
| 74 } // namespace system | 74 } // namespace system |
| 75 } // namespace ash | 75 } // namespace ash |
| OLD | NEW |