OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 MOJO_SERVICES_WINDOW_MANAGER_VIEW_TARGET_H_ | 5 #ifndef SERVICES_WINDOW_MANAGER_VIEW_TARGET_H_ |
6 #define MOJO_SERVICES_WINDOW_MANAGER_VIEW_TARGET_H_ | 6 #define SERVICES_WINDOW_MANAGER_VIEW_TARGET_H_ |
7 | 7 |
8 #include "ui/events/event_target.h" | 8 #include "ui/events/event_target.h" |
9 | 9 |
10 namespace gfx { | 10 namespace gfx { |
11 class Point; | 11 class Point; |
12 class Rect; | 12 class Rect; |
13 class Vector2d; | 13 class Vector2d; |
14 } | 14 } |
15 | 15 |
16 namespace ui { | 16 namespace ui { |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 // The mojo::View that we dispatch to. | 87 // The mojo::View that we dispatch to. |
88 View* view_; | 88 View* view_; |
89 | 89 |
90 scoped_ptr<ViewTargeter> targeter_; | 90 scoped_ptr<ViewTargeter> targeter_; |
91 | 91 |
92 DISALLOW_COPY_AND_ASSIGN(ViewTarget); | 92 DISALLOW_COPY_AND_ASSIGN(ViewTarget); |
93 }; | 93 }; |
94 | 94 |
95 } // namespace mojo | 95 } // namespace mojo |
96 | 96 |
97 #endif // MOJO_SERVICES_WINDOW_MANAGER_VIEW_TARGET_H_ | 97 #endif // SERVICES_WINDOW_MANAGER_VIEW_TARGET_H_ |
OLD | NEW |