| 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_CONTROLS_TABBED_PANE_NATIVE_TABBED_PANE_WRAPPER_H_ | 5 #ifndef UI_VIEWS_CONTROLS_TABBED_PANE_NATIVE_TABBED_PANE_WRAPPER_H_ |
| 6 #define VIEWS_CONTROLS_TABBED_PANE_NATIVE_TABBED_PANE_WRAPPER_H_ | 6 #define UI_VIEWS_CONTROLS_TABBED_PANE_NATIVE_TABBED_PANE_WRAPPER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/string16.h" | 9 #include "base/string16.h" |
| 10 | 10 |
| 11 namespace views { | 11 namespace views { |
| 12 | 12 |
| 13 class TabbedPane; | 13 class TabbedPane; |
| 14 class View; | 14 class View; |
| 15 | 15 |
| 16 // An interface implemented by an object that provides a platform-native | 16 // An interface implemented by an object that provides a platform-native |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 // Returns a handle to the underlying native view for testing. | 65 // Returns a handle to the underlying native view for testing. |
| 66 virtual gfx::NativeView GetTestingHandle() const = 0; | 66 virtual gfx::NativeView GetTestingHandle() const = 0; |
| 67 | 67 |
| 68 // Creates an appropriate NativeTabbedPaneWrapper for the platform. | 68 // Creates an appropriate NativeTabbedPaneWrapper for the platform. |
| 69 static NativeTabbedPaneWrapper* CreateNativeWrapper(TabbedPane* tabbed_pane); | 69 static NativeTabbedPaneWrapper* CreateNativeWrapper(TabbedPane* tabbed_pane); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace views | 72 } // namespace views |
| 73 | 73 |
| 74 #endif // VIEWS_CONTROLS_TABBED_PANE_NATIVE_TABBED_PANE_WRAPPER_H_ | 74 #endif // UI_VIEWS_CONTROLS_TABBED_PANE_NATIVE_TABBED_PANE_WRAPPER_H_ |
| OLD | NEW |