Commit 8c770383 authored by Katie D's avatar Katie D Committed by Commit Bot

Refactor class in ash/autoclick/common to ash/autoclick.

No functional changes.

Bug: 876115
Change-Id: Id4a4008c6aff53ff4718b04d5c4186b97c769580
Reviewed-on: https://chromium-review.googlesource.com/c/1277987
Commit-Queue: Katie Dektar <katie@chromium.org>
Reviewed-by: default avatarJames Cook <jamescook@chromium.org>
Cr-Commit-Position: refs/heads/master@{#599257}
parent 8ce1b79b
...@@ -244,6 +244,8 @@ component("ash") { ...@@ -244,6 +244,8 @@ component("ash") {
"assistant/util/views_util.h", "assistant/util/views_util.h",
"autoclick/autoclick_controller.cc", "autoclick/autoclick_controller.cc",
"autoclick/autoclick_controller.h", "autoclick/autoclick_controller.h",
"autoclick/autoclick_ring_handler.cc",
"autoclick/autoclick_ring_handler.h",
"bluetooth_devices_observer.cc", "bluetooth_devices_observer.cc",
"bluetooth_devices_observer.h", "bluetooth_devices_observer.h",
"cancel_mode.cc", "cancel_mode.cc",
...@@ -1360,7 +1362,6 @@ component("ash") { ...@@ -1360,7 +1362,6 @@ component("ash") {
deps = [ deps = [
"//ash/app_menu", "//ash/app_menu",
"//ash/assistant/ui:constants", "//ash/assistant/ui:constants",
"//ash/autoclick/common:autoclick",
"//ash/components/cursor", "//ash/components/cursor",
"//ash/components/fast_ink", "//ash/components/fast_ink",
"//ash/components/quick_launch/public/mojom", "//ash/components/quick_launch/public/mojom",
...@@ -2015,7 +2016,6 @@ test("ash_unittests") { ...@@ -2015,7 +2016,6 @@ test("ash_unittests") {
"//ash/app_list:test_support", "//ash/app_list:test_support",
"//ash/app_list/presenter", "//ash/app_list/presenter",
"//ash/app_menu", "//ash/app_menu",
"//ash/autoclick/common:autoclick",
"//ash/components/fast_ink", "//ash/components/fast_ink",
"//ash/components/fast_ink:unit_tests", "//ash/components/fast_ink:unit_tests",
"//ash/components/quick_launch/public/mojom:constants", "//ash/components/quick_launch/public/mojom:constants",
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#include "ash/autoclick/autoclick_controller.h" #include "ash/autoclick/autoclick_controller.h"
#include "ash/autoclick/common/autoclick_ring_handler.h" #include "ash/autoclick/autoclick_ring_handler.h"
#include "ash/public/cpp/ash_constants.h" #include "ash/public/cpp/ash_constants.h"
#include "ash/public/cpp/shell_window_ids.h" #include "ash/public/cpp/shell_window_ids.h"
#include "ash/shell.h" #include "ash/shell.h"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "ash/autoclick/common/autoclick_ring_handler.h" #include "ash/autoclick/autoclick_ring_handler.h"
#include "third_party/skia/include/core/SkColor.h" #include "third_party/skia/include/core/SkColor.h"
#include "third_party/skia/include/core/SkPath.h" #include "third_party/skia/include/core/SkPath.h"
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ASH_AUTOCLICK_COMMON_AUTOCLICK_RING_HANDLER_H_ #ifndef ASH_AUTOCLICK_AUTOCLICK_RING_HANDLER_H_
#define ASH_AUTOCLICK_COMMON_AUTOCLICK_RING_HANDLER_H_ #define ASH_AUTOCLICK_AUTOCLICK_RING_HANDLER_H_
#include "base/macros.h" #include "base/macros.h"
#include "base/timer/timer.h" #include "base/timer/timer.h"
...@@ -57,4 +57,4 @@ class AutoclickRingHandler : public gfx::LinearAnimation { ...@@ -57,4 +57,4 @@ class AutoclickRingHandler : public gfx::LinearAnimation {
} // namespace ash } // namespace ash
#endif // ASH_AUTOCLICK_COMMON_AUTOCLICK_RING_HANDLER_H_ #endif // ASH_AUTOCLICK_AUTOCLICK_RING_HANDLER_H_
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/ui.gni")
source_set("autoclick") {
sources = [
"autoclick_ring_handler.cc",
"autoclick_ring_handler.h",
]
deps = [
"//base",
"//cc/paint",
"//skia",
"//ui/aura",
"//ui/compositor",
"//ui/display",
"//ui/events",
"//ui/gfx",
"//ui/gfx/geometry",
"//ui/views",
"//ui/wm",
]
}
include_rules = [
"-ash",
"+ash/autoclick/common",
"+ui/aura",
"+ui/compositor",
"+ui/display",
"+ui/events",
"+ui/gfx",
"+ui/gfx/geometry",
"+ui/views",
"+ui/wm",
]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment