| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/system/chromeos/audio/tray_audio.h" | 5 #include "ash/system/chromeos/audio/tray_audio.h" |
| 6 | 6 |
| 7 #include <cmath> | 7 #include <cmath> |
| 8 | 8 |
| 9 #include "ash/ash_constants.h" | 9 #include "ash/ash_constants.h" |
| 10 #include "ash/ash_switches.h" | 10 #include "ash/ash_switches.h" |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 if (audio_detail_) | 654 if (audio_detail_) |
| 655 audio_detail_->Update(); | 655 audio_detail_->Update(); |
| 656 if (volume_view_) { | 656 if (volume_view_) { |
| 657 volume_view_->SetVolumeLevel(GetVolumeLevel()); | 657 volume_view_->SetVolumeLevel(GetVolumeLevel()); |
| 658 volume_view_->Update(); | 658 volume_view_->Update(); |
| 659 } | 659 } |
| 660 } | 660 } |
| 661 | 661 |
| 662 } // namespace internal | 662 } // namespace internal |
| 663 } // namespace ash | 663 } // namespace ash |
| OLD | NEW |