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 VIEWS_VIEW_H_ | 5 #ifndef VIEWS_VIEW_H_ |
6 #define VIEWS_VIEW_H_ | 6 #define VIEWS_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <map> | 10 #include <map> |
(...skipping 24 matching lines...) Expand all Loading... |
35 namespace gfx { | 35 namespace gfx { |
36 class Canvas; | 36 class Canvas; |
37 class Insets; | 37 class Insets; |
38 class Path; | 38 class Path; |
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 LayerAnimationSequence; | |
46 class TextInputClient; | 45 class TextInputClient; |
47 class Texture; | 46 class Texture; |
48 class ThemeProvider; | 47 class ThemeProvider; |
49 class Transform; | 48 class Transform; |
50 enum TouchStatus; | 49 enum TouchStatus; |
51 } | 50 } |
52 | 51 |
53 #if defined(OS_WIN) | 52 #if defined(OS_WIN) |
54 class __declspec(uuid("26f5641a-246d-457b-a96d-07f3fae6acf2")) | 53 class __declspec(uuid("26f5641a-246d-457b-a96d-07f3fae6acf2")) |
55 NativeViewAccessibilityWin; | 54 NativeViewAccessibilityWin; |
(...skipping 1389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1445 base::win::ScopedComPtr<NativeViewAccessibilityWin> | 1444 base::win::ScopedComPtr<NativeViewAccessibilityWin> |
1446 native_view_accessibility_win_; | 1445 native_view_accessibility_win_; |
1447 #endif | 1446 #endif |
1448 | 1447 |
1449 DISALLOW_COPY_AND_ASSIGN(View); | 1448 DISALLOW_COPY_AND_ASSIGN(View); |
1450 }; | 1449 }; |
1451 | 1450 |
1452 } // namespace views | 1451 } // namespace views |
1453 | 1452 |
1454 #endif // VIEWS_VIEW_H_ | 1453 #endif // VIEWS_VIEW_H_ |
OLD | NEW |