| 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 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
| 11 #include <atlbase.h> | 11 #include <atlbase.h> |
| 12 #include <atlapp.h> | 12 #include <atlapp.h> |
| 13 #include <atlmisc.h> | 13 #include <atlmisc.h> |
| 14 #endif // defined(OS_WIN) | 14 #endif // defined(OS_WIN) |
| 15 | 15 |
| 16 #include <algorithm> | 16 #include <algorithm> |
| 17 #include <map> | 17 #include <map> |
| 18 #include <string> | 18 #include <string> |
| 19 #include <vector> | 19 #include <vector> |
| 20 | 20 |
| 21 #include "base/gfx/rect.h" | 21 #include "base/gfx/rect.h" |
| 22 #include "base/scoped_ptr.h" | 22 #include "base/scoped_ptr.h" |
| 23 #include "chrome/common/accessibility_types.h" | |
| 24 #include "views/accelerator.h" | 23 #include "views/accelerator.h" |
| 24 #include "views/accessibility/accessibility_types.h" |
| 25 #include "views/background.h" | 25 #include "views/background.h" |
| 26 #include "views/border.h" | 26 #include "views/border.h" |
| 27 | 27 |
| 28 namespace gfx { | 28 namespace gfx { |
| 29 class Insets; | 29 class Insets; |
| 30 class Path; | 30 class Path; |
| 31 } | 31 } |
| 32 | 32 |
| 33 class ChromeCanvas; | 33 class ChromeCanvas; |
| 34 class OSExchangeData; | 34 class OSExchangeData; |
| (...skipping 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1349 // is going to be flipped horizontally (using the appropriate transform) on | 1349 // is going to be flipped horizontally (using the appropriate transform) on |
| 1350 // right-to-left locales for this View. | 1350 // right-to-left locales for this View. |
| 1351 bool flip_canvas_on_paint_for_rtl_ui_; | 1351 bool flip_canvas_on_paint_for_rtl_ui_; |
| 1352 | 1352 |
| 1353 DISALLOW_COPY_AND_ASSIGN(View); | 1353 DISALLOW_COPY_AND_ASSIGN(View); |
| 1354 }; | 1354 }; |
| 1355 | 1355 |
| 1356 } // namespace views | 1356 } // namespace views |
| 1357 | 1357 |
| 1358 #endif // VIEWS_VIEW_H_ | 1358 #endif // VIEWS_VIEW_H_ |
| OLD | NEW |