OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 VIEWS_VIEW_H_ | 5 #ifndef VIEWS_VIEW_H_ |
6 #define VIEWS_VIEW_H_ | 6 #define VIEWS_VIEW_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #include <algorithm> | 10 #include <algorithm> |
11 #include <map> | 11 #include <map> |
12 #include <set> | 12 #include <set> |
13 #include <string> | 13 #include <string> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
| 16 #include "app/gfx/native_widget_types.h" |
16 #include "app/os_exchange_data.h" | 17 #include "app/os_exchange_data.h" |
17 #include "base/gfx/native_widget_types.h" | |
18 #include "base/gfx/rect.h" | 18 #include "base/gfx/rect.h" |
19 #include "base/scoped_ptr.h" | 19 #include "base/scoped_ptr.h" |
20 #include "views/accelerator.h" | 20 #include "views/accelerator.h" |
21 #include "views/accessibility/accessibility_types.h" | 21 #include "views/accessibility/accessibility_types.h" |
22 #include "views/background.h" | 22 #include "views/background.h" |
23 #include "views/border.h" | 23 #include "views/border.h" |
24 | 24 |
25 namespace gfx { | 25 namespace gfx { |
26 class Canvas; | 26 class Canvas; |
27 class Insets; | 27 class Insets; |
(...skipping 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1230 // is going to be flipped horizontally (using the appropriate transform) on | 1230 // is going to be flipped horizontally (using the appropriate transform) on |
1231 // right-to-left locales for this View. | 1231 // right-to-left locales for this View. |
1232 bool flip_canvas_on_paint_for_rtl_ui_; | 1232 bool flip_canvas_on_paint_for_rtl_ui_; |
1233 | 1233 |
1234 DISALLOW_COPY_AND_ASSIGN(View); | 1234 DISALLOW_COPY_AND_ASSIGN(View); |
1235 }; | 1235 }; |
1236 | 1236 |
1237 } // namespace views | 1237 } // namespace views |
1238 | 1238 |
1239 #endif // VIEWS_VIEW_H_ | 1239 #endif // VIEWS_VIEW_H_ |
OLD | NEW |