| 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 UI_VIEWS_WIDGET_ROOT_VIEW_H_ | 5 #ifndef UI_VIEWS_WIDGET_ROOT_VIEW_H_ |
| 6 #define UI_VIEWS_WIDGET_ROOT_VIEW_H_ | 6 #define UI_VIEWS_WIDGET_ROOT_VIEW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 11 #include "ui/events/event_processor.h" | 12 #include "ui/events/event_processor.h" |
| 12 #include "ui/views/focus/focus_manager.h" | 13 #include "ui/views/focus/focus_manager.h" |
| 13 #include "ui/views/focus/focus_search.h" | 14 #include "ui/views/focus/focus_search.h" |
| 14 #include "ui/views/view.h" | 15 #include "ui/views/view.h" |
| 15 #include "ui/views/view_targeter_delegate.h" | 16 #include "ui/views/view_targeter_delegate.h" |
| 16 | 17 |
| 17 namespace views { | 18 namespace views { |
| 18 | 19 |
| 19 namespace test { | 20 namespace test { |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 // Tracks drag state for a view. | 233 // Tracks drag state for a view. |
| 233 View::DragInfo drag_info_; | 234 View::DragInfo drag_info_; |
| 234 | 235 |
| 235 DISALLOW_IMPLICIT_CONSTRUCTORS(RootView); | 236 DISALLOW_IMPLICIT_CONSTRUCTORS(RootView); |
| 236 }; | 237 }; |
| 237 | 238 |
| 238 } // namespace internal | 239 } // namespace internal |
| 239 } // namespace views | 240 } // namespace views |
| 240 | 241 |
| 241 #endif // UI_VIEWS_WIDGET_ROOT_VIEW_H_ | 242 #endif // UI_VIEWS_WIDGET_ROOT_VIEW_H_ |
| OLD | NEW |