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

Side by Side Diff: chrome/browser/ui/startup/session_crashed_infobar_delegate_unittest.cc

Issue 1165913002: [Cleanup] Used scoped pointers in KeyedServiceFactory's SetTestingFactory functions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Finish renaming profile -> context Created 5 years, 6 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 "chrome/browser/ui/startup/session_crashed_infobar_delegate.h" 5 #include "chrome/browser/ui/startup/session_crashed_infobar_delegate.h"
6 6
7 #include "base/files/scoped_temp_dir.h" 7 #include "base/files/scoped_temp_dir.h"
8 #include "base/prefs/pref_registry_simple.h" 8 #include "base/prefs/pref_registry_simple.h"
9 #include "base/prefs/testing_pref_service.h" 9 #include "base/prefs/testing_pref_service.h"
10 #include "base/run_loop.h" 10 #include "base/run_loop.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 } 44 }
45 45
46 private: 46 private:
47 TestingPrefServiceSimple pref_service; 47 TestingPrefServiceSimple pref_service;
48 base::ScopedTempDir temp_dir_; 48 base::ScopedTempDir temp_dir_;
49 }; 49 };
50 50
51 TEST_F(SessionCrashedInfoBarDelegateUnitTest, DetachingTabWithCrashedInfoBar) { 51 TEST_F(SessionCrashedInfoBarDelegateUnitTest, DetachingTabWithCrashedInfoBar) {
52 SessionServiceFactory::SetForTestProfile( 52 SessionServiceFactory::SetForTestProfile(
53 browser()->profile(), 53 browser()->profile(),
54 static_cast<SessionService*>( 54 make_scoped_ptr(static_cast<SessionService*>(
55 SessionServiceFactory::GetInstance()->BuildServiceInstanceFor( 55 SessionServiceFactory::GetInstance()->BuildServiceInstanceFor(
56 browser()->profile()))); 56 browser()->profile()))));
57 57
58 // Create a browser which we can close during the test. 58 // Create a browser which we can close during the test.
59 Browser::CreateParams params(browser()->profile(), 59 Browser::CreateParams params(browser()->profile(),
60 browser()->host_desktop_type()); 60 browser()->host_desktop_type());
61 scoped_ptr<Browser> first_browser( 61 scoped_ptr<Browser> first_browser(
62 chrome::CreateBrowserWithTestWindowForParams(&params)); 62 chrome::CreateBrowserWithTestWindowForParams(&params));
63 AddTab(first_browser.get(), GURL(chrome::kChromeUINewTabURL)); 63 AddTab(first_browser.get(), GURL(chrome::kChromeUINewTabURL));
64 64
65 // Attach the crashed infobar to it. 65 // Attach the crashed infobar to it.
66 SessionCrashedInfoBarDelegate::Create(first_browser.get()); 66 SessionCrashedInfoBarDelegate::Create(first_browser.get());
(...skipping 25 matching lines...) Expand all
92 infobar_service = 92 infobar_service =
93 InfoBarService::FromWebContents(tab_strip->GetWebContentsAt(0)); 93 InfoBarService::FromWebContents(tab_strip->GetWebContentsAt(0));
94 EXPECT_EQ(1U, infobar_service->infobar_count()); 94 EXPECT_EQ(1U, infobar_service->infobar_count());
95 95
96 // This used to crash. 96 // This used to crash.
97 infobar->Accept(); 97 infobar->Accept();
98 98
99 // Ramp down the test. 99 // Ramp down the test.
100 tab_strip->CloseWebContentsAt(0, TabStripModel::CLOSE_NONE); 100 tab_strip->CloseWebContentsAt(0, TabStripModel::CLOSE_NONE);
101 } 101 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/bookmarks/bookmark_unittest.cc ('k') | chrome/browser/ui/sync/one_click_signin_sync_observer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698