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_VIEW_H_ | 5 #ifndef UI_VIEWS_VIEW_H_ |
6 #define UI_VIEWS_VIEW_H_ | 6 #define UI_VIEWS_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <map> | 10 #include <map> |
(...skipping 28 matching lines...) Expand all Loading... |
39 } | 39 } |
40 | 40 |
41 namespace ui { | 41 namespace ui { |
42 struct AccessibleViewState; | 42 struct AccessibleViewState; |
43 class Compositor; | 43 class Compositor; |
44 class Layer; | 44 class Layer; |
45 class TextInputClient; | 45 class TextInputClient; |
46 class Texture; | 46 class Texture; |
47 class ThemeProvider; | 47 class ThemeProvider; |
48 class Transform; | 48 class Transform; |
49 enum TouchStatus; | |
50 } | 49 } |
51 | 50 |
52 #if defined(OS_WIN) | 51 #if defined(OS_WIN) |
53 class __declspec(uuid("26f5641a-246d-457b-a96d-07f3fae6acf2")) | 52 class __declspec(uuid("26f5641a-246d-457b-a96d-07f3fae6acf2")) |
54 NativeViewAccessibilityWin; | 53 NativeViewAccessibilityWin; |
55 #endif | 54 #endif |
56 | 55 |
57 namespace views { | 56 namespace views { |
58 | 57 |
59 class Background; | 58 class Background; |
(...skipping 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1466 base::win::ScopedComPtr<NativeViewAccessibilityWin> | 1465 base::win::ScopedComPtr<NativeViewAccessibilityWin> |
1467 native_view_accessibility_win_; | 1466 native_view_accessibility_win_; |
1468 #endif | 1467 #endif |
1469 | 1468 |
1470 DISALLOW_COPY_AND_ASSIGN(View); | 1469 DISALLOW_COPY_AND_ASSIGN(View); |
1471 }; | 1470 }; |
1472 | 1471 |
1473 } // namespace views | 1472 } // namespace views |
1474 | 1473 |
1475 #endif // UI_VIEWS_VIEW_H_ | 1474 #endif // UI_VIEWS_VIEW_H_ |
OLD | NEW |