| 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/touch/touch_hud_debug.h" | 5 #include "ash/touch/touch_hud_debug.h" |
| 6 | 6 |
| 7 #include "ash/display/display_manager.h" | 7 #include "ash/display/display_manager.h" |
| 8 #include "ash/root_window_controller.h" | 8 #include "ash/root_window_controller.h" |
| 9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 10 #include "ash/wm/property_util.h" | |
| 11 #include "base/json/json_string_value_serializer.h" | 10 #include "base/json/json_string_value_serializer.h" |
| 12 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
| 13 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
| 14 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
| 15 #include "third_party/skia/include/core/SkPath.h" | 14 #include "third_party/skia/include/core/SkPath.h" |
| 16 #include "ui/aura/root_window.h" | 15 #include "ui/aura/root_window.h" |
| 17 #include "ui/base/animation/animation_delegate.h" | 16 #include "ui/base/animation/animation_delegate.h" |
| 18 #include "ui/base/events/event.h" | 17 #include "ui/base/events/event.h" |
| 19 #include "ui/gfx/canvas.h" | 18 #include "ui/gfx/canvas.h" |
| 20 #include "ui/gfx/display.h" | 19 #include "ui/gfx/display.h" |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 controller->set_touch_hud_debug(this); | 481 controller->set_touch_hud_debug(this); |
| 483 } | 482 } |
| 484 | 483 |
| 485 void TouchHudDebug::UnsetHudForRootWindowController( | 484 void TouchHudDebug::UnsetHudForRootWindowController( |
| 486 RootWindowController* controller) { | 485 RootWindowController* controller) { |
| 487 controller->set_touch_hud_debug(NULL); | 486 controller->set_touch_hud_debug(NULL); |
| 488 } | 487 } |
| 489 | 488 |
| 490 } // namespace internal | 489 } // namespace internal |
| 491 } // namespace ash | 490 } // namespace ash |
| OLD | NEW |