| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_CONTROLS_TABLE_NATIVE_TABLE_WRAPPER_H_ | 5 #ifndef VIEWS_CONTROLS_TABLE_NATIVE_TABLE_WRAPPER_H_ |
| 6 #define VIEWS_CONTROLS_TABLE_NATIVE_TABLE_WRAPPER_H_ | 6 #define VIEWS_CONTROLS_TABLE_NATIVE_TABLE_WRAPPER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "gfx/native_widget_types.h" | 9 #include "ui/gfx/native_widget_types.h" |
| 10 | 10 |
| 11 using ui::TableColumn; | 11 using ui::TableColumn; |
| 12 | 12 |
| 13 namespace views { | 13 namespace views { |
| 14 | 14 |
| 15 class TableView2; | 15 class TableView2; |
| 16 class View; | 16 class View; |
| 17 | 17 |
| 18 // An interface implemented by an object that provides a platform-native | 18 // An interface implemented by an object that provides a platform-native |
| 19 // table. | 19 // table. |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 // Creates an appropriate NativeButtonWrapper for the platform. | 73 // Creates an appropriate NativeButtonWrapper for the platform. |
| 74 static NativeTableWrapper* CreateNativeWrapper(TableView2* table); | 74 static NativeTableWrapper* CreateNativeWrapper(TableView2* table); |
| 75 | 75 |
| 76 protected: | 76 protected: |
| 77 virtual ~NativeTableWrapper() {} | 77 virtual ~NativeTableWrapper() {} |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 } // namespace views | 80 } // namespace views |
| 81 | 81 |
| 82 #endif // VIEWS_CONTROLS_TABLE_NATIVE_TABLE_WRAPPER_H_ | 82 #endif // VIEWS_CONTROLS_TABLE_NATIVE_TABLE_WRAPPER_H_ |
| OLD | NEW |