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

Side by Side Diff: chrome/browser/sync/test/integration/bookmarks_helper.cc

Issue 1233673002: Fix componentization of chrome/browser/bookmarks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix "gn check" and compilation on Mac Created 5 years, 5 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 #include "chrome/browser/sync/test/integration/bookmarks_helper.h" 5 #include "chrome/browser/sync/test/integration/bookmarks_helper.h"
6 6
7 #include <set> 7 #include <set>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/files/file_util.h" 12 #include "base/files/file_util.h"
13 #include "base/path_service.h" 13 #include "base/path_service.h"
14 #include "base/rand_util.h" 14 #include "base/rand_util.h"
15 #include "base/run_loop.h" 15 #include "base/run_loop.h"
16 #include "base/strings/string_number_conversions.h" 16 #include "base/strings/string_number_conversions.h"
17 #include "base/strings/string_util.h" 17 #include "base/strings/string_util.h"
18 #include "base/strings/stringprintf.h" 18 #include "base/strings/stringprintf.h"
19 #include "base/strings/utf_string_conversions.h" 19 #include "base/strings/utf_string_conversions.h"
20 #include "base/synchronization/waitable_event.h" 20 #include "base/synchronization/waitable_event.h"
21 #include "base/task/cancelable_task_tracker.h" 21 #include "base/task/cancelable_task_tracker.h"
22 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 22 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
23 #include "chrome/browser/bookmarks/chrome_bookmark_client.h" 23 #include "chrome/browser/bookmarks/managed_bookmark_service_factory.h"
24 #include "chrome/browser/bookmarks/chrome_bookmark_client_factory.h"
25 #include "chrome/browser/favicon/favicon_service_factory.h" 24 #include "chrome/browser/favicon/favicon_service_factory.h"
26 #include "chrome/browser/history/history_service_factory.h" 25 #include "chrome/browser/history/history_service_factory.h"
27 #include "chrome/browser/profiles/profile.h" 26 #include "chrome/browser/profiles/profile.h"
28 #include "chrome/browser/sync/glue/bookmark_change_processor.h" 27 #include "chrome/browser/sync/glue/bookmark_change_processor.h"
29 #include "chrome/browser/sync/test/integration/await_match_status_change_checker .h" 28 #include "chrome/browser/sync/test/integration/await_match_status_change_checker .h"
30 #include "chrome/browser/sync/test/integration/multi_client_status_change_checke r.h" 29 #include "chrome/browser/sync/test/integration/multi_client_status_change_checke r.h"
31 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" 30 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h"
32 #include "chrome/browser/sync/test/integration/single_client_status_change_check er.h" 31 #include "chrome/browser/sync/test/integration/single_client_status_change_check er.h"
33 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h" 32 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h"
34 #include "chrome/browser/sync/test/integration/sync_test.h" 33 #include "chrome/browser/sync/test/integration/sync_test.h"
35 #include "chrome/common/chrome_paths.h" 34 #include "chrome/common/chrome_paths.h"
36 #include "components/bookmarks/browser/bookmark_client.h" 35 #include "components/bookmarks/browser/bookmark_client.h"
37 #include "components/bookmarks/browser/bookmark_model.h" 36 #include "components/bookmarks/browser/bookmark_model.h"
38 #include "components/bookmarks/browser/bookmark_model_observer.h" 37 #include "components/bookmarks/browser/bookmark_model_observer.h"
39 #include "components/bookmarks/browser/bookmark_utils.h" 38 #include "components/bookmarks/browser/bookmark_utils.h"
39 #include "components/bookmarks/managed/managed_bookmark_service.h"
40 #include "components/favicon/core/favicon_service.h" 40 #include "components/favicon/core/favicon_service.h"
41 #include "components/favicon_base/favicon_util.h" 41 #include "components/favicon_base/favicon_util.h"
42 #include "components/history/core/browser/history_db_task.h" 42 #include "components/history/core/browser/history_db_task.h"
43 #include "components/history/core/browser/history_service.h" 43 #include "components/history/core/browser/history_service.h"
44 #include "components/history/core/browser/history_types.h" 44 #include "components/history/core/browser/history_types.h"
45 #include "content/public/test/test_utils.h" 45 #include "content/public/test/test_utils.h"
46 #include "testing/gtest/include/gtest/gtest.h" 46 #include "testing/gtest/include/gtest/gtest.h"
47 #include "third_party/skia/include/core/SkBitmap.h" 47 #include "third_party/skia/include/core/SkBitmap.h"
48 #include "ui/base/models/tree_node_iterator.h" 48 #include "ui/base/models/tree_node_iterator.h"
49 #include "ui/gfx/image/image_skia.h" 49 #include "ui/gfx/image/image_skia.h"
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 457
458 const BookmarkNode* GetOtherNode(int index) { 458 const BookmarkNode* GetOtherNode(int index) {
459 return GetBookmarkModel(index)->other_node(); 459 return GetBookmarkModel(index)->other_node();
460 } 460 }
461 461
462 const BookmarkNode* GetSyncedBookmarksNode(int index) { 462 const BookmarkNode* GetSyncedBookmarksNode(int index) {
463 return GetBookmarkModel(index)->mobile_node(); 463 return GetBookmarkModel(index)->mobile_node();
464 } 464 }
465 465
466 const BookmarkNode* GetManagedNode(int index) { 466 const BookmarkNode* GetManagedNode(int index) {
467 return ChromeBookmarkClientFactory::GetForProfile( 467 return ManagedBookmarkServiceFactory::GetForProfile(
468 sync_datatype_helper::test()->GetProfile(index))->managed_node(); 468 sync_datatype_helper::test()->GetProfile(index))
469 ->managed_node();
469 } 470 }
470 471
471 BookmarkModel* GetVerifierBookmarkModel() { 472 BookmarkModel* GetVerifierBookmarkModel() {
472 return BookmarkModelFactory::GetForProfile( 473 return BookmarkModelFactory::GetForProfile(
473 sync_datatype_helper::test()->verifier()); 474 sync_datatype_helper::test()->verifier());
474 } 475 }
475 476
476 const BookmarkNode* AddURL(int profile, 477 const BookmarkNode* AddURL(int profile,
477 const std::string& title, 478 const std::string& title,
478 const GURL& url) { 479 const GURL& url) {
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
993 994
994 std::string IndexedSubfolderName(int i) { 995 std::string IndexedSubfolderName(int i) {
995 return base::StringPrintf("Subfolder Name %d", i); 996 return base::StringPrintf("Subfolder Name %d", i);
996 } 997 }
997 998
998 std::string IndexedSubsubfolderName(int i) { 999 std::string IndexedSubsubfolderName(int i) {
999 return base::StringPrintf("Subsubfolder Name %d", i); 1000 return base::StringPrintf("Subsubfolder Name %d", i);
1000 } 1001 }
1001 1002
1002 } // namespace bookmarks_helper 1003 } // namespace bookmarks_helper
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698