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

Unified Diff: components/enhanced_bookmarks/enhanced_bookmark_utils_unittest.cc

Issue 562693002: Move TestBookmarkClient into bookmarks namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix enhanced_bookmarks Created 6 years, 3 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 26b1b1d69bd178b5eb10fac4968ba55cb7dd76d7..47d0f70c1c659a646edb37a3a3d1fd34f0bcb9d3 100644
--- a/components/enhanced_bookmarks/enhanced_bookmark_utils_unittest.cc
+++ b/components/enhanced_bookmarks/enhanced_bookmark_utils_unittest.cc
@@ -9,6 +9,8 @@
#include "components/enhanced_bookmarks/enhanced_bookmark_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
+using bookmarks::TestBookmarkClient;
+
namespace {
const GURL bookmark_url("http://example.com/index.html");
@@ -33,7 +35,7 @@ class EnhancedBookmarkUtilsTest : public testing::Test {
};
TEST_F(EnhancedBookmarkUtilsTest, TestBookmarkSearch) {
- test::TestBookmarkClient bookmark_client;
+ TestBookmarkClient bookmark_client;
scoped_ptr<BookmarkModel> bookmark_model(bookmark_client.CreateModel());
const BookmarkNode* node1 = AddBookmark(bookmark_model.get(), "john hopkins");
const BookmarkNode* node2 = AddBookmark(bookmark_model.get(), "JohN hopkins");

Powered by Google App Engine
This is Rietveld 408576698