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

Unified Diff: ui/views/controls/tabbed_pane/tabbed_pane_unittest.cc

Issue 11421164: Migrate CollectedCookiesViews to Chrome style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/controls/tabbed_pane/tabbed_pane.cc ('k') | ui/views/focus/focus_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/tabbed_pane/tabbed_pane_unittest.cc
diff --git a/ui/views/controls/tabbed_pane/tabbed_pane_unittest.cc b/ui/views/controls/tabbed_pane/tabbed_pane_unittest.cc
index 3127d2166f7cc5d903ab40ee1cb78048983d422b..8146c9ca468b0964b9edd4f9e4affbc1c346125e 100644
--- a/ui/views/controls/tabbed_pane/tabbed_pane_unittest.cc
+++ b/ui/views/controls/tabbed_pane/tabbed_pane_unittest.cc
@@ -59,13 +59,13 @@ void TabbedPaneTest::SetUp() {
params.ownership = views::Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
params.bounds = gfx::Rect(0, 0, 100, 100);
widget_->Init(params);
- tabbed_pane_ = new TabbedPane();
+ tabbed_pane_ = new TabbedPane(false);
// In order to properly initialize the |TabbedPane| it must be added to a
// parent view (see the ViewHierarchyChanged method of the |TabbedPane|).
widget_->GetRootView()->AddChildView(tabbed_pane_);
#if defined(OS_WIN) && !defined(USE_AURA)
- tabbed_pane_win_ = new TabbedPane();
+ tabbed_pane_win_ = new TabbedPane(false);
tabbed_pane_win_->set_use_native_win_control(true);
widget_->GetRootView()->AddChildView(tabbed_pane_win_);
#endif
« no previous file with comments | « ui/views/controls/tabbed_pane/tabbed_pane.cc ('k') | ui/views/focus/focus_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698