| Index: ui/views/controls/tabbed_pane/tabbed_pane.h
|
| diff --git a/ui/views/controls/tabbed_pane/tabbed_pane.h b/ui/views/controls/tabbed_pane/tabbed_pane.h
|
| index 31a6b1f316f8d8992190c3051a1e2c9cf3f24d3f..cb394ffb1d32a5316e1c43f6c094d4303b7df933 100644
|
| --- a/ui/views/controls/tabbed_pane/tabbed_pane.h
|
| +++ b/ui/views/controls/tabbed_pane/tabbed_pane.h
|
| @@ -19,7 +19,7 @@ class TabbedPaneListener;
|
| // associated view is displayed.
|
| class VIEWS_EXPORT TabbedPane : public View {
|
| public:
|
| - TabbedPane();
|
| + TabbedPane(bool use_chrome_style);
|
| virtual ~TabbedPane();
|
|
|
| TabbedPaneListener* listener() const { return listener_; }
|
| @@ -102,6 +102,9 @@ class VIEWS_EXPORT TabbedPane : public View {
|
| // The accessible name of this tabbed pane.
|
| string16 accessible_name_;
|
|
|
| + // Use new Chrome-style rendering for the tabbed pane.
|
| + bool use_chrome_style_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(TabbedPane);
|
| };
|
|
|
|
|