| OLD | NEW |
| 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 <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" | 35 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" |
| 36 #include "chrome/browser/sync/test/integration/single_client_status_change_check
er.h" | 36 #include "chrome/browser/sync/test/integration/single_client_status_change_check
er.h" |
| 37 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h" | 37 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h" |
| 38 #include "chrome/browser/sync/test/integration/sync_test.h" | 38 #include "chrome/browser/sync/test/integration/sync_test.h" |
| 39 #include "chrome/common/chrome_paths.h" | 39 #include "chrome/common/chrome_paths.h" |
| 40 #include "components/bookmarks/browser/bookmark_client.h" | 40 #include "components/bookmarks/browser/bookmark_client.h" |
| 41 #include "components/bookmarks/browser/bookmark_model.h" | 41 #include "components/bookmarks/browser/bookmark_model.h" |
| 42 #include "components/bookmarks/browser/bookmark_model_observer.h" | 42 #include "components/bookmarks/browser/bookmark_model_observer.h" |
| 43 #include "components/bookmarks/browser/bookmark_utils.h" | 43 #include "components/bookmarks/browser/bookmark_utils.h" |
| 44 #include "components/bookmarks/managed/managed_bookmark_service.h" | 44 #include "components/bookmarks/managed/managed_bookmark_service.h" |
| 45 #include "components/browser_sync/browser/profile_sync_service.h" | 45 #include "components/browser_sync/profile_sync_service.h" |
| 46 #include "components/favicon/core/favicon_service.h" | 46 #include "components/favicon/core/favicon_service.h" |
| 47 #include "components/favicon_base/favicon_util.h" | 47 #include "components/favicon_base/favicon_util.h" |
| 48 #include "components/history/core/browser/history_db_task.h" | 48 #include "components/history/core/browser/history_db_task.h" |
| 49 #include "components/history/core/browser/history_service.h" | 49 #include "components/history/core/browser/history_service.h" |
| 50 #include "components/history/core/browser/history_types.h" | 50 #include "components/history/core/browser/history_types.h" |
| 51 #include "components/sync_bookmarks/bookmark_change_processor.h" | 51 #include "components/sync_bookmarks/bookmark_change_processor.h" |
| 52 #include "content/public/test/test_utils.h" | 52 #include "content/public/test/test_utils.h" |
| 53 #include "testing/gtest/include/gtest/gtest.h" | 53 #include "testing/gtest/include/gtest/gtest.h" |
| 54 #include "third_party/skia/include/core/SkBitmap.h" | 54 #include "third_party/skia/include/core/SkBitmap.h" |
| 55 #include "ui/base/models/tree_node_iterator.h" | 55 #include "ui/base/models/tree_node_iterator.h" |
| (...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1003 | 1003 |
| 1004 std::string IndexedSubfolderName(int i) { | 1004 std::string IndexedSubfolderName(int i) { |
| 1005 return base::StringPrintf("Subfolder Name %d", i); | 1005 return base::StringPrintf("Subfolder Name %d", i); |
| 1006 } | 1006 } |
| 1007 | 1007 |
| 1008 std::string IndexedSubsubfolderName(int i) { | 1008 std::string IndexedSubsubfolderName(int i) { |
| 1009 return base::StringPrintf("Subsubfolder Name %d", i); | 1009 return base::StringPrintf("Subsubfolder Name %d", i); |
| 1010 } | 1010 } |
| 1011 | 1011 |
| 1012 } // namespace bookmarks_helper | 1012 } // namespace bookmarks_helper |
| OLD | NEW |