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

Side by Side Diff: chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest.mm

Issue 2216713002: Use BookmarkModelFactory::GetForBrowserContext everywhere (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bookmarks
Patch Set: Replace in .mm files Created 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #import "chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest .h" 5 #import "chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest .h"
6 6
7 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 7 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
8 #include "chrome/test/base/testing_profile.h" 8 #include "chrome/test/base/testing_profile.h"
9 #include "components/bookmarks/browser/bookmark_model.h" 9 #include "components/bookmarks/browser/bookmark_model.h"
10 #include "components/bookmarks/test/bookmark_test_helpers.h" 10 #include "components/bookmarks/test/bookmark_test_helpers.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 } 60 }
61 61
62 void BookmarkAppleScriptTest::SetUp() { 62 void BookmarkAppleScriptTest::SetUp() {
63 CocoaProfileTest::SetUp(); 63 CocoaProfileTest::SetUp();
64 ASSERT_TRUE(profile()); 64 ASSERT_TRUE(profile());
65 65
66 appDelegate_.reset([[FakeAppDelegate alloc] init]); 66 appDelegate_.reset([[FakeAppDelegate alloc] init]);
67 [appDelegate_.get() setTest:this]; 67 [appDelegate_.get() setTest:this];
68 DCHECK([NSApp delegate] == nil); 68 DCHECK([NSApp delegate] == nil);
69 [NSApp setDelegate:appDelegate_]; 69 [NSApp setDelegate:appDelegate_];
70 BookmarkModel* model = BookmarkModelFactory::GetForProfile(profile()); 70 BookmarkModel* model = BookmarkModelFactory::GetForBrowserContext(profile());
71 const BookmarkNode* root = model->bookmark_bar_node(); 71 const BookmarkNode* root = model->bookmark_bar_node();
72 const std::string modelString("a f1:[ b d c ] d f2:[ e f g ] h "); 72 const std::string modelString("a f1:[ b d c ] d f2:[ e f g ] h ");
73 bookmarks::test::AddNodesFromModelString(model, root, modelString); 73 bookmarks::test::AddNodesFromModelString(model, root, modelString);
74 bookmarkBar_.reset([[BookmarkFolderAppleScript alloc] 74 bookmarkBar_.reset([[BookmarkFolderAppleScript alloc]
75 initWithBookmarkNode:model->bookmark_bar_node()]); 75 initWithBookmarkNode:model->bookmark_bar_node()]);
76 } 76 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/browser_commands.cc ('k') | chrome/browser/ui/cocoa/applescript/bookmark_node_applescript.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698