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

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

Issue 7550038: Rename VIEWS_API to VIEWS_EXPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 months 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
« no previous file with comments | « views/controls/single_split_view.h ('k') | views/controls/table/group_table_view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_H_ 5 #ifndef VIEWS_CONTROLS_TABBED_PANE_H_
6 #define VIEWS_CONTROLS_TABBED_PANE_H_ 6 #define VIEWS_CONTROLS_TABBED_PANE_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "views/view.h" 11 #include "views/view.h"
12 12
13 namespace views { 13 namespace views {
14 14
15 class NativeTabbedPaneWrapper; 15 class NativeTabbedPaneWrapper;
16 class TabbedPaneListener; 16 class TabbedPaneListener;
17 17
18 // TabbedPane is a view that shows tabs. When the user clicks on a tab, the 18 // TabbedPane is a view that shows tabs. When the user clicks on a tab, the
19 // associated view is displayed. 19 // associated view is displayed.
20 class VIEWS_API TabbedPane : public View { 20 class VIEWS_EXPORT TabbedPane : public View {
21 public: 21 public:
22 TabbedPane(); 22 TabbedPane();
23 virtual ~TabbedPane(); 23 virtual ~TabbedPane();
24 24
25 TabbedPaneListener* listener() const { return listener_; } 25 TabbedPaneListener* listener() const { return listener_; }
26 void set_listener(TabbedPaneListener* listener) { listener_ = listener; } 26 void set_listener(TabbedPaneListener* listener) { listener_ = listener; }
27 27
28 NativeTabbedPaneWrapper* native_wrapper() const { 28 NativeTabbedPaneWrapper* native_wrapper() const {
29 return native_tabbed_pane_; 29 return native_tabbed_pane_;
30 } 30 }
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 // The accessible name of this view. 100 // The accessible name of this view.
101 string16 accessible_name_; 101 string16 accessible_name_;
102 102
103 DISALLOW_COPY_AND_ASSIGN(TabbedPane); 103 DISALLOW_COPY_AND_ASSIGN(TabbedPane);
104 }; 104 };
105 105
106 } // namespace views 106 } // namespace views
107 107
108 #endif // VIEWS_CONTROLS_TABBED_PANE_H_ 108 #endif // VIEWS_CONTROLS_TABBED_PANE_H_
OLDNEW
« no previous file with comments | « views/controls/single_split_view.h ('k') | views/controls/table/group_table_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698