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

Side by Side Diff: chrome/browser/views/bookmark_bar_view_test.cc

Issue 14449: Makes the interactive bookmark bar view tests faster by disabling... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #include "base/string_util.h" 5 #include "base/string_util.h"
6 #include "chrome/browser/automation/ui_controls.h" 6 #include "chrome/browser/automation/ui_controls.h"
7 #include "chrome/browser/bookmarks/bookmark_model.h" 7 #include "chrome/browser/bookmarks/bookmark_model.h"
8 #include "chrome/browser/bookmarks/bookmark_utils.h" 8 #include "chrome/browser/bookmarks/bookmark_utils.h"
9 #include "chrome/browser/page_navigator.h" 9 #include "chrome/browser/page_navigator.h"
10 #include "chrome/browser/profile.h" 10 #include "chrome/browser/profile.h"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 virtual void SetUp() { 71 virtual void SetUp() {
72 views::MenuItemView::allow_task_nesting_during_run_ = true; 72 views::MenuItemView::allow_task_nesting_during_run_ = true;
73 BookmarkBarView::testing_ = true; 73 BookmarkBarView::testing_ = true;
74 74
75 profile_.reset(new TestingProfile()); 75 profile_.reset(new TestingProfile());
76 profile_->set_has_history_service(true); 76 profile_->set_has_history_service(true);
77 profile_->CreateBookmarkModel(true); 77 profile_->CreateBookmarkModel(true);
78 profile_->GetPrefs()->SetBoolean(prefs::kShowBookmarkBar, true); 78 profile_->GetPrefs()->SetBoolean(prefs::kShowBookmarkBar, true);
79 79
80 model_ = profile_->GetBookmarkModel(); 80 model_ = profile_->GetBookmarkModel();
81 model_->set_store(NULL);
81 82
82 bb_view_ = new BookmarkBarView(profile_.get(), NULL); 83 bb_view_ = new BookmarkBarView(profile_.get(), NULL);
83 bb_view_->SetPageNavigator(&navigator_); 84 bb_view_->SetPageNavigator(&navigator_);
84 85
85 AddTestData(CreateBigMenu()); 86 AddTestData(CreateBigMenu());
86 87
87 // Calculate the preferred size so that one button doesn't fit, which 88 // Calculate the preferred size so that one button doesn't fit, which
88 // triggers the overflow button to appear. 89 // triggers the overflow button to appear.
89 // 90 //
90 // BookmarkBarView::Layout does nothing if the parent is NULL and 91 // BookmarkBarView::Layout does nothing if the parent is NULL and
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after
952 MessageLoop::current()->PostTask( 953 MessageLoop::current()->PostTask(
953 FROM_HERE, CreateEventTask(this, &BookmarkBarViewTest12::Step5)); 954 FROM_HERE, CreateEventTask(this, &BookmarkBarViewTest12::Step5));
954 } 955 }
955 956
956 void Step5() { 957 void Step5() {
957 Done(); 958 Done();
958 } 959 }
959 }; 960 };
960 961
961 VIEW_TEST(BookmarkBarViewTest12, CloseWithModalDialog) 962 VIEW_TEST(BookmarkBarViewTest12, CloseWithModalDialog)
OLDNEW
« chrome/browser/bookmarks/bookmark_model.h ('K') | « chrome/browser/bookmarks/bookmark_model.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698