| 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/bluetooth/tray_bluetooth.h" | 5 #include "ash/system/bluetooth/tray_bluetooth.h" |
| 6 | 6 |
| 7 #include <map> |
| 8 #include <memory> |
| 9 #include <set> |
| 10 #include <string> |
| 11 |
| 7 #include "ash/resources/grit/ash_resources.h" | 12 #include "ash/resources/grit/ash_resources.h" |
| 8 #include "ash/resources/vector_icons/vector_icons.h" | 13 #include "ash/resources/vector_icons/vector_icons.h" |
| 9 #include "ash/session/session_state_delegate.h" | |
| 10 #include "ash/shell.h" | 14 #include "ash/shell.h" |
| 11 #include "ash/shell_port.h" | 15 #include "ash/shell_port.h" |
| 12 #include "ash/strings/grit/ash_strings.h" | 16 #include "ash/strings/grit/ash_strings.h" |
| 13 #include "ash/system/bluetooth/tray_bluetooth_helper.h" | 17 #include "ash/system/bluetooth/tray_bluetooth_helper.h" |
| 14 #include "ash/system/tray/hover_highlight_view.h" | 18 #include "ash/system/tray/hover_highlight_view.h" |
| 15 #include "ash/system/tray/system_tray.h" | 19 #include "ash/system/tray/system_tray.h" |
| 16 #include "ash/system/tray/system_tray_controller.h" | 20 #include "ash/system/tray/system_tray_controller.h" |
| 17 #include "ash/system/tray/system_tray_notifier.h" | 21 #include "ash/system/tray/system_tray_notifier.h" |
| 18 #include "ash/system/tray/tray_constants.h" | 22 #include "ash/system/tray/tray_constants.h" |
| 19 #include "ash/system/tray/tray_details_view.h" | 23 #include "ash/system/tray/tray_details_view.h" |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 detailed_->Update(); | 576 detailed_->Update(); |
| 573 } | 577 } |
| 574 | 578 |
| 575 void TrayBluetooth::OnBluetoothDiscoveringChanged() { | 579 void TrayBluetooth::OnBluetoothDiscoveringChanged() { |
| 576 if (!detailed_) | 580 if (!detailed_) |
| 577 return; | 581 return; |
| 578 detailed_->Update(); | 582 detailed_->Update(); |
| 579 } | 583 } |
| 580 | 584 |
| 581 } // namespace ash | 585 } // namespace ash |
| OLD | NEW |