| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_VIEW_H_ | 5 #ifndef UI_VIEWS_VIEW_H_ |
| 6 #define UI_VIEWS_VIEW_H_ | 6 #define UI_VIEWS_VIEW_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 12 #include "gfx/rect.h" | 12 #include "ui/gfx/rect.h" |
| 13 #include "ui/views/events/event.h" | 13 #include "ui/views/events/event.h" |
| 14 | 14 |
| 15 namespace gfx { | 15 namespace gfx { |
| 16 class Canvas; | 16 class Canvas; |
| 17 class Point; | 17 class Point; |
| 18 class Rect; | 18 class Rect; |
| 19 class Size; | 19 class Size; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace ui { | 22 namespace ui { |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 - rtl | 432 - rtl |
| 433 - l10n | 433 - l10n |
| 434 - mousewheel | 434 - mousewheel |
| 435 - more on painting | 435 - more on painting |
| 436 - layer stuff | 436 - layer stuff |
| 437 - investigate why assorted notifications are necessary | 437 - investigate why assorted notifications are necessary |
| 438 - native_widget_views | 438 - native_widget_views |
| 439 - native_widget_gtk | 439 - native_widget_gtk |
| 440 | 440 |
| 441 */ | 441 */ |
| OLD | NEW |