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

Side by Side Diff: chrome/browser/ui/bookmarks/bookmark_editor_unittest.cc

Issue 284893003: Move bookmarks/core/... to bookmarks/... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing errors reported by presubmit Created 6 years, 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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/bookmarks/bookmark_editor.h" 5 #include "chrome/browser/ui/bookmarks/bookmark_editor.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "components/bookmarks/core/test/test_bookmark_client.h" 8 #include "components/bookmarks/test/test_bookmark_client.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 using base::ASCIIToUTF16; 11 using base::ASCIIToUTF16;
12 12
13 namespace { 13 namespace {
14 14
15 TEST(BookmarkEditorTest, ApplyEditsWithNoFolderChange) { 15 TEST(BookmarkEditorTest, ApplyEditsWithNoFolderChange) {
16 test::TestBookmarkClient client; 16 test::TestBookmarkClient client;
17 scoped_ptr<BookmarkModel> model(client.CreateModel(false)); 17 scoped_ptr<BookmarkModel> model(client.CreateModel(false));
18 const BookmarkNode* bookmarkbar = model->bookmark_bar_node(); 18 const BookmarkNode* bookmarkbar = model->bookmark_bar_node();
(...skipping 26 matching lines...) Expand all
45 BookmarkEditor::ApplyEditsWithNoFolderChange(model.get(), 45 BookmarkEditor::ApplyEditsWithNoFolderChange(model.get(),
46 bookmarkbar, 46 bookmarkbar,
47 detail, 47 detail,
48 ASCIIToUTF16("folder2"), 48 ASCIIToUTF16("folder2"),
49 GURL(std::string())); 49 GURL(std::string()));
50 EXPECT_EQ(ASCIIToUTF16("folder2"), bookmarkbar->GetChild(4)->GetTitle()); 50 EXPECT_EQ(ASCIIToUTF16("folder2"), bookmarkbar->GetChild(4)->GetTitle());
51 } 51 }
52 } 52 }
53 53
54 } // namespace 54 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/ui/bookmarks/bookmark_editor.h ('k') | chrome/browser/ui/bookmarks/bookmark_tab_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698