| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/brightness/tray_brightness.h" | 5 #include "ash/system/brightness/tray_brightness.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "ash/common/material_design/material_design_controller.h" | 9 #include "ash/material_design/material_design_controller.h" |
| 10 #include "ash/common/shell_observer.h" | |
| 11 #include "ash/common/wm_shell.h" | |
| 12 #include "ash/resources/grit/ash_resources.h" | 10 #include "ash/resources/grit/ash_resources.h" |
| 13 #include "ash/resources/vector_icons/vector_icons.h" | 11 #include "ash/resources/vector_icons/vector_icons.h" |
| 12 #include "ash/shell_observer.h" |
| 14 #include "ash/strings/grit/ash_strings.h" | 13 #include "ash/strings/grit/ash_strings.h" |
| 15 #include "ash/system/brightness_control_delegate.h" | 14 #include "ash/system/brightness_control_delegate.h" |
| 16 #include "ash/system/tray/tray_constants.h" | 15 #include "ash/system/tray/tray_constants.h" |
| 17 #include "ash/system/tray/tray_popup_utils.h" | 16 #include "ash/system/tray/tray_popup_utils.h" |
| 18 #include "ash/system/tray/tri_view.h" | 17 #include "ash/system/tray/tri_view.h" |
| 19 #include "ash/wm/maximize_mode/maximize_mode_controller.h" | 18 #include "ash/wm/maximize_mode/maximize_mode_controller.h" |
| 19 #include "ash/wm_shell.h" |
| 20 #include "base/bind.h" | 20 #include "base/bind.h" |
| 21 #include "base/strings/utf_string_conversions.h" | 21 #include "base/strings/utf_string_conversions.h" |
| 22 #include "base/threading/thread_task_runner_handle.h" | 22 #include "base/threading/thread_task_runner_handle.h" |
| 23 #include "chromeos/dbus/dbus_thread_manager.h" | 23 #include "chromeos/dbus/dbus_thread_manager.h" |
| 24 #include "chromeos/dbus/power_manager_client.h" | 24 #include "chromeos/dbus/power_manager_client.h" |
| 25 #include "ui/base/resource/resource_bundle.h" | 25 #include "ui/base/resource/resource_bundle.h" |
| 26 #include "ui/display/display.h" | 26 #include "ui/display/display.h" |
| 27 #include "ui/gfx/image/image.h" | 27 #include "ui/gfx/image/image.h" |
| 28 #include "ui/gfx/paint_vector_icon.h" | 28 #include "ui/gfx/paint_vector_icon.h" |
| 29 #include "ui/views/controls/image_view.h" | 29 #include "ui/views/controls/image_view.h" |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 if (!display::Display::HasInternalDisplay()) | 274 if (!display::Display::HasInternalDisplay()) |
| 275 return; | 275 return; |
| 276 | 276 |
| 277 if (brightness_view_ && brightness_view_->visible()) | 277 if (brightness_view_ && brightness_view_->visible()) |
| 278 SetDetailedViewCloseDelay(kTrayPopupAutoCloseDelayInSeconds); | 278 SetDetailedViewCloseDelay(kTrayPopupAutoCloseDelayInSeconds); |
| 279 else | 279 else |
| 280 PopupDetailedView(kTrayPopupAutoCloseDelayInSeconds, false); | 280 PopupDetailedView(kTrayPopupAutoCloseDelayInSeconds, false); |
| 281 } | 281 } |
| 282 | 282 |
| 283 } // namespace ash | 283 } // namespace ash |
| OLD | NEW |