Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: ui/views/controls/tabbed_pane/native_tabbed_pane_wrapper.h

Issue 8658009: views: Move tabbed_pane directory to ui/views/controls/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698