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

Unified Diff: components/enhanced_bookmarks/enhanced_bookmark_utils_unittest.cc

Issue 456793002: Fixing the enhanced bookmark namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: components/enhanced_bookmarks/enhanced_bookmark_utils_unittest.cc
diff --git a/components/enhanced_bookmarks/enhanced_bookmark_utils_unittest.cc b/components/enhanced_bookmarks/enhanced_bookmark_utils_unittest.cc
index ce9dec5ab55efecfd6854eda4633b8621c788f5f..3cddea76ecc8749f60166f47cdaead26d8ac2ff5 100644
--- a/components/enhanced_bookmarks/enhanced_bookmark_utils_unittest.cc
+++ b/components/enhanced_bookmarks/enhanced_bookmark_utils_unittest.cc
@@ -42,8 +42,7 @@ TEST_F(EnhancedBookmarkUtilsTest, TestBookmarkSearch) {
const BookmarkNode* node5 = AddBookmark(bookmark_model.get(), "jo hn");
std::vector<const BookmarkNode*> result =
- enhanced_bookmark_utils::FindBookmarksWithQuery(bookmark_model.get(),
- "john");
+ enhanced_bookmark::FindBookmarksWithQuery(bookmark_model.get(), "john");
ASSERT_EQ(result.size(), 3u);
CHECK(std::find(result.begin(), result.end(), node1) != result.end());

Powered by Google App Engine
This is Rietveld 408576698