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

Side by Side Diff: components/bookmarks/core/test/bookmark_test_helpers.cc

Issue 268673004: Move bookmarks' test support file to the bookmarks component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@367839
Patch Set: Remove duplicated dependency 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/bookmarks/bookmark_test_helpers.h" 5 #include "components/bookmarks/core/test/bookmark_test_helpers.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/run_loop.h" 11 #include "base/run_loop.h"
12 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
13 #include "components/bookmarks/core/browser/base_bookmark_model_observer.h" 13 #include "components/bookmarks/core/browser/base_bookmark_model_observer.h"
14 #include "components/bookmarks/core/browser/bookmark_model.h" 14 #include "components/bookmarks/core/browser/bookmark_model.h"
15 #include "url/gurl.h" 15 #include "url/gurl.h"
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 const BookmarkNode* node, 130 const BookmarkNode* node,
131 const std::string& model_string) { 131 const std::string& model_string) {
132 DCHECK(node); 132 DCHECK(node);
133 std::string::size_type start_pos = 0; 133 std::string::size_type start_pos = 0;
134 std::string::size_type end_pos = 134 std::string::size_type end_pos =
135 AddNodesFromString(model, node, model_string, start_pos); 135 AddNodesFromString(model, node, model_string, start_pos);
136 DCHECK(end_pos == std::string::npos); 136 DCHECK(end_pos == std::string::npos);
137 } 137 }
138 138
139 } // namespace test 139 } // namespace test
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698