| 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 #ifndef ASH_TOUCH_TOUCH_OBSERVER_HUD_H_ |   5 #ifndef ASH_TOUCH_TOUCH_OBSERVER_HUD_H_ | 
|   6 #define ASH_TOUCH_TOUCH_OBSERVER_HUD_H_ |   6 #define ASH_TOUCH_TOUCH_OBSERVER_HUD_H_ | 
|   7  |   7  | 
|   8 #include <stdint.h> |   8 #include <stdint.h> | 
|   9  |   9  | 
|  10 #include "ash/ash_export.h" |  10 #include "ash/ash_export.h" | 
|  11 #include "ash/display/window_tree_host_manager.h" |  11 #include "ash/display/window_tree_host_manager.h" | 
|  12 #include "base/macros.h" |  12 #include "base/macros.h" | 
|  13 #include "ui/display/display_observer.h" |  13 #include "ui/display/display_observer.h" | 
|  14 #include "ui/events/event_handler.h" |  14 #include "ui/events/event_handler.h" | 
|  15 #include "ui/views/widget/widget_observer.h" |  15 #include "ui/views/widget/widget_observer.h" | 
|  16  |  16  | 
|  17 #if defined(OS_CHROMEOS) |  17 #if defined(OS_CHROMEOS) | 
|  18 #include "ui/display/chromeos/display_configurator.h" |  18 #include "ui/display/manager/chromeos/display_configurator.h" | 
|  19 #endif  // defined(OS_CHROMEOS) |  19 #endif  // defined(OS_CHROMEOS) | 
|  20  |  20  | 
|  21 namespace views { |  21 namespace views { | 
|  22 class Widget; |  22 class Widget; | 
|  23 } |  23 } | 
|  24  |  24  | 
|  25 namespace ash { |  25 namespace ash { | 
|  26  |  26  | 
|  27 // An event filter which handles system level gesture events. Objects of this |  27 // An event filter which handles system level gesture events. Objects of this | 
|  28 // class manage their own lifetime. |  28 // class manage their own lifetime. | 
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  85   aura::Window* root_window_; |  85   aura::Window* root_window_; | 
|  86  |  86  | 
|  87   views::Widget* widget_; |  87   views::Widget* widget_; | 
|  88  |  88  | 
|  89   DISALLOW_COPY_AND_ASSIGN(TouchObserverHUD); |  89   DISALLOW_COPY_AND_ASSIGN(TouchObserverHUD); | 
|  90 }; |  90 }; | 
|  91  |  91  | 
|  92 }  // namespace ash |  92 }  // namespace ash | 
|  93  |  93  | 
|  94 #endif  // ASH_TOUCH_TOUCH_OBSERVER_HUD_H_ |  94 #endif  // ASH_TOUCH_TOUCH_OBSERVER_HUD_H_ | 
| OLD | NEW |