| 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_CONTROLS_NATIVE_NATIVE_VIEW_HOST_H_ | 5 #ifndef UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_H_ |
| 6 #define UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_H_ | 6 #define UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "ui/gfx/native_widget_types.h" | 11 #include "ui/gfx/native_widget_types.h" |
| 11 #include "ui/views/view.h" | 12 #include "ui/views/view.h" |
| 12 | 13 |
| 13 namespace views { | 14 namespace views { |
| 14 namespace test { | 15 namespace test { |
| 15 class NativeViewHostTestBase; | 16 class NativeViewHostTestBase; |
| 16 } | 17 } |
| 17 | 18 |
| 18 class NativeViewHostWrapper; | 19 class NativeViewHostWrapper; |
| 19 | 20 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 | 122 |
| 122 // Color to paint in the background while resizing. | 123 // Color to paint in the background while resizing. |
| 123 SkColor resize_background_color_; | 124 SkColor resize_background_color_; |
| 124 | 125 |
| 125 DISALLOW_COPY_AND_ASSIGN(NativeViewHost); | 126 DISALLOW_COPY_AND_ASSIGN(NativeViewHost); |
| 126 }; | 127 }; |
| 127 | 128 |
| 128 } // namespace views | 129 } // namespace views |
| 129 | 130 |
| 130 #endif // UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_H_ | 131 #endif // UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_H_ |
| OLD | NEW |