| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/accelerators/accelerator_controller_delegate_aura.h" | 5 #include "ash/accelerators/accelerator_controller_delegate_aura.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "ash/utility/screenshot_controller.h" | 35 #include "ash/utility/screenshot_controller.h" |
| 36 #include "ash/wm/power_button_controller.h" | 36 #include "ash/wm/power_button_controller.h" |
| 37 #include "ash/wm/window_state_aura.h" | 37 #include "ash/wm/window_state_aura.h" |
| 38 #include "ash/wm/window_util.h" | 38 #include "ash/wm/window_util.h" |
| 39 #include "base/memory/ptr_util.h" | 39 #include "base/memory/ptr_util.h" |
| 40 #include "base/metrics/histogram_macros.h" | 40 #include "base/metrics/histogram_macros.h" |
| 41 #include "base/metrics/user_metrics.h" | 41 #include "base/metrics/user_metrics.h" |
| 42 #include "base/strings/string_split.h" | 42 #include "base/strings/string_split.h" |
| 43 #include "base/strings/utf_string_conversions.h" | 43 #include "base/strings/utf_string_conversions.h" |
| 44 #include "third_party/skia/include/core/SkColor.h" | 44 #include "third_party/skia/include/core/SkColor.h" |
| 45 #include "third_party/skia/include/core/SkPaint.h" | |
| 46 #include "ui/base/accelerators/accelerator.h" | 45 #include "ui/base/accelerators/accelerator.h" |
| 47 #include "ui/base/l10n/l10n_util.h" | 46 #include "ui/base/l10n/l10n_util.h" |
| 48 #include "ui/compositor/layer.h" | 47 #include "ui/compositor/layer.h" |
| 49 #include "ui/compositor/layer_animation_sequence.h" | 48 #include "ui/compositor/layer_animation_sequence.h" |
| 50 #include "ui/compositor/layer_animator.h" | 49 #include "ui/compositor/layer_animator.h" |
| 51 #include "ui/display/manager/display_manager.h" | 50 #include "ui/display/manager/display_manager.h" |
| 52 #include "ui/display/screen.h" | 51 #include "ui/display/screen.h" |
| 53 #include "ui/events/event.h" | 52 #include "ui/events/event.h" |
| 54 #include "ui/events/keycodes/keyboard_codes.h" | 53 #include "ui/events/keycodes/keyboard_codes.h" |
| 55 #include "ui/message_center/message_center.h" | 54 #include "ui/message_center/message_center.h" |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 message_center::NotifierId( | 500 message_center::NotifierId( |
| 502 message_center::NotifierId::SYSTEM_COMPONENT, | 501 message_center::NotifierId::SYSTEM_COMPONENT, |
| 503 system_notifier::kNotifierDeprecatedAccelerator), | 502 system_notifier::kNotifierDeprecatedAccelerator), |
| 504 message_center::RichNotificationData(), | 503 message_center::RichNotificationData(), |
| 505 new DeprecatedAcceleratorNotificationDelegate)); | 504 new DeprecatedAcceleratorNotificationDelegate)); |
| 506 message_center::MessageCenter::Get()->AddNotification( | 505 message_center::MessageCenter::Get()->AddNotification( |
| 507 std::move(notification)); | 506 std::move(notification)); |
| 508 } | 507 } |
| 509 | 508 |
| 510 } // namespace ash | 509 } // namespace ash |
| OLD | NEW |