diff options
author | naiem.shaik@gmail.com <naiem.shaik@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-20 17:16:04 +0000 |
---|---|---|
committer | naiem.shaik@gmail.com <naiem.shaik@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-20 17:16:04 +0000 |
commit | a90c8cae340737062a8ab03af4667a55ebac103c (patch) | |
tree | f3e1989f1df095e3c11215d50e4e772ce6e9e7cd | |
parent | 3520beb6abd07f51fc784d210240c6d604edecc7 (diff) | |
download | chromium_src-a90c8cae340737062a8ab03af4667a55ebac103c.zip chromium_src-a90c8cae340737062a8ab03af4667a55ebac103c.tar.gz chromium_src-a90c8cae340737062a8ab03af4667a55ebac103c.tar.bz2 |
Move bookmarks/core/... to bookmarks/...
Bookmarks is not a layered component, so there is no need for the two level deep
hierarchy, switch code from components/bookmarks/core/... to components/bookmarks/...
BUG=370434
TEST=components_unittests --gtest_filter=Bookmark*
R=blundell@chromium.org,sdefresne@chromium.org
TBR=thakis@chromium.org
Review URL: https://codereview.chromium.org/284893003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271675 0039d316-1c4b-4281-b951-d872f2087c98
221 files changed, 483 insertions, 481 deletions
diff --git a/chrome/browser/DEPS b/chrome/browser/DEPS index 6f2091e..abd3c8a 100644 --- a/chrome/browser/DEPS +++ b/chrome/browser/DEPS @@ -12,9 +12,9 @@ include_rules = [ "+components/autofill/content/common", "+components/autofill/core/browser", "+components/autofill/core/common", - "+components/bookmarks/core/browser", - "+components/bookmarks/core/common", - "+components/bookmarks/core/test", + "+components/bookmarks/browser", + "+components/bookmarks/common", + "+components/bookmarks/test", "+components/breakpad", "+components/cdm/browser", "+components/cloud_devices/common", diff --git a/chrome/browser/android/bookmarks/bookmarks_bridge.cc b/chrome/browser/android/bookmarks/bookmarks_bridge.cc index 90dfca3..0afae8b 100644 --- a/chrome/browser/android/bookmarks/bookmarks_bridge.cc +++ b/chrome/browser/android/bookmarks/bookmarks_bridge.cc @@ -13,8 +13,8 @@ #include "chrome/browser/profiles/profile_manager.h" #include "chrome/browser/signin/signin_manager_factory.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "components/signin/core/browser/signin_manager.h" #include "content/public/browser/browser_thread.h" #include "jni/BookmarksBridge_jni.h" diff --git a/chrome/browser/android/bookmarks/bookmarks_bridge.h b/chrome/browser/android/bookmarks/bookmarks_bridge.h index f4a52aa..311c5ae 100644 --- a/chrome/browser/android/bookmarks/bookmarks_bridge.h +++ b/chrome/browser/android/bookmarks/bookmarks_bridge.h @@ -13,7 +13,7 @@ #include "base/compiler_specific.h" #include "chrome/browser/android/bookmarks/managed_bookmarks_shim.h" #include "chrome/browser/android/bookmarks/partner_bookmarks_shim.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" class Profile; diff --git a/chrome/browser/android/bookmarks/managed_bookmarks_shim.cc b/chrome/browser/android/bookmarks/managed_bookmarks_shim.cc index 2bf52f5..a26c75a 100644 --- a/chrome/browser/android/bookmarks/managed_bookmarks_shim.cc +++ b/chrome/browser/android/bookmarks/managed_bookmarks_shim.cc @@ -10,7 +10,7 @@ #include "base/strings/utf_string_conversions.h" #include "chrome/browser/policy/managed_bookmarks_policy_handler.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "google_apis/gaia/gaia_auth_util.h" #include "grit/component_strings.h" #include "ui/base/l10n/l10n_util.h" diff --git a/chrome/browser/android/bookmarks/partner_bookmarks_shim.cc b/chrome/browser/android/bookmarks/partner_bookmarks_shim.cc index 79ea0c7..6c5ad75d 100644 --- a/chrome/browser/android/bookmarks/partner_bookmarks_shim.cc +++ b/chrome/browser/android/bookmarks/partner_bookmarks_shim.cc @@ -9,7 +9,7 @@ #include "base/values.h" #include "chrome/browser/profiles/profile.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "components/pref_registry/pref_registry_syncable.h" #include "content/public/browser/browser_context.h" #include "content/public/browser/browser_thread.h" diff --git a/chrome/browser/android/bookmarks/partner_bookmarks_shim.h b/chrome/browser/android/bookmarks/partner_bookmarks_shim.h index c79f404..75461b7 100644 --- a/chrome/browser/android/bookmarks/partner_bookmarks_shim.h +++ b/chrome/browser/android/bookmarks/partner_bookmarks_shim.h @@ -9,7 +9,7 @@ #include "base/memory/scoped_ptr.h" #include "base/strings/string16.h" #include "base/supports_user_data.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "url/gurl.h" class PrefService; diff --git a/chrome/browser/android/bookmarks/partner_bookmarks_shim_unittest.cc b/chrome/browser/android/bookmarks/partner_bookmarks_shim_unittest.cc index a8caa96..304bccd 100644 --- a/chrome/browser/android/bookmarks/partner_bookmarks_shim_unittest.cc +++ b/chrome/browser/android/bookmarks/partner_bookmarks_shim_unittest.cc @@ -9,8 +9,8 @@ #include "base/strings/utf_string_conversions.h" #include "chrome/browser/bookmarks/bookmark_model_factory.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/browser_thread.h" #include "content/public/test/test_browser_thread.h" #include "testing/gmock/include/gmock/gmock.h" diff --git a/chrome/browser/android/provider/bookmark_model_observer_task.cc b/chrome/browser/android/provider/bookmark_model_observer_task.cc index 867dcab..6a52ff7 100644 --- a/chrome/browser/android/provider/bookmark_model_observer_task.cc +++ b/chrome/browser/android/provider/bookmark_model_observer_task.cc @@ -4,7 +4,7 @@ #include "chrome/browser/android/provider/bookmark_model_observer_task.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/browser_thread.h" using content::BrowserThread; diff --git a/chrome/browser/android/provider/bookmark_model_observer_task.h b/chrome/browser/android/provider/bookmark_model_observer_task.h index 91555372..828f44c 100644 --- a/chrome/browser/android/provider/bookmark_model_observer_task.h +++ b/chrome/browser/android/provider/bookmark_model_observer_task.h @@ -7,7 +7,7 @@ #include "base/basictypes.h" #include "base/compiler_specific.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" // Base class for synchronous tasks that involve the bookmark model. // Ensures the model has been loaded before accessing it. diff --git a/chrome/browser/android/provider/chrome_browser_provider.cc b/chrome/browser/android/provider/chrome_browser_provider.cc index 0589117..4e1c5b1 100644 --- a/chrome/browser/android/provider/chrome_browser_provider.cc +++ b/chrome/browser/android/provider/chrome_browser_provider.cc @@ -31,8 +31,8 @@ #include "chrome/browser/search_engines/template_url.h" #include "chrome/browser/search_engines/template_url_service.h" #include "chrome/browser/search_engines/template_url_service_factory.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/notification_service.h" #include "grit/generated_resources.h" diff --git a/chrome/browser/android/provider/chrome_browser_provider.h b/chrome/browser/android/provider/chrome_browser_provider.h index c0d4cb9..aa23cde 100644 --- a/chrome/browser/android/provider/chrome_browser_provider.h +++ b/chrome/browser/android/provider/chrome_browser_provider.h @@ -12,7 +12,7 @@ #include "base/task/cancelable_task_tracker.h" #include "chrome/browser/common/cancelable_request.h" #include "chrome/browser/history/android/android_history_types.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" diff --git a/chrome/browser/android/signin/signin_manager_android.cc b/chrome/browser/android/signin/signin_manager_android.cc index acc4ec7..ce64c3b 100644 --- a/chrome/browser/android/signin/signin_manager_android.cc +++ b/chrome/browser/android/signin/signin_manager_android.cc @@ -20,7 +20,7 @@ #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" #include "chrome/browser/signin/signin_manager_factory.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "components/signin/core/browser/profile_oauth2_token_service.h" #include "components/signin/core/browser/signin_manager.h" #include "components/signin/core/common/profile_management_switches.h" diff --git a/chrome/browser/autocomplete/autocomplete_provider.cc b/chrome/browser/autocomplete/autocomplete_provider.cc index 963a1db..db083c8 100644 --- a/chrome/browser/autocomplete/autocomplete_provider.cc +++ b/chrome/browser/autocomplete/autocomplete_provider.cc @@ -13,7 +13,7 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/common/net/url_fixer_upper.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/common/url_constants.h" #include "net/base/net_util.h" #include "url/gurl.h" diff --git a/chrome/browser/autocomplete/bookmark_provider.cc b/chrome/browser/autocomplete/bookmark_provider.cc index 75b74e7..3437562 100644 --- a/chrome/browser/autocomplete/bookmark_provider.cc +++ b/chrome/browser/autocomplete/bookmark_provider.cc @@ -17,8 +17,8 @@ #include "chrome/browser/omnibox/omnibox_field_trial.h" #include "chrome/browser/profiles/profile.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_match.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_match.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "net/base/net_util.h" typedef std::vector<BookmarkMatch> BookmarkMatches; diff --git a/chrome/browser/autocomplete/bookmark_provider_unittest.cc b/chrome/browser/autocomplete/bookmark_provider_unittest.cc index 79a87f0..3701b25 100644 --- a/chrome/browser/autocomplete/bookmark_provider_unittest.cc +++ b/chrome/browser/autocomplete/bookmark_provider_unittest.cc @@ -17,9 +17,9 @@ #include "chrome/browser/autocomplete/autocomplete_provider.h" #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_match.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/browser/bookmark_match.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "testing/gtest/include/gtest/gtest.h" // The bookmark corpus against which we will simulate searches. diff --git a/chrome/browser/autocomplete/history_quick_provider_unittest.cc b/chrome/browser/autocomplete/history_quick_provider_unittest.cc index 524aeac..f5ee074 100644 --- a/chrome/browser/autocomplete/history_quick_provider_unittest.cc +++ b/chrome/browser/autocomplete/history_quick_provider_unittest.cc @@ -34,7 +34,7 @@ #include "chrome/common/pref_names.h" #include "chrome/test/base/testing_browser_process.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/test/test_browser_thread.h" #include "sql/transaction.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/chrome/browser/autocomplete/history_url_provider.cc b/chrome/browser/autocomplete/history_url_provider.cc index 67ac762..0729386 100644 --- a/chrome/browser/autocomplete/history_url_provider.cc +++ b/chrome/browser/autocomplete/history_url_provider.cc @@ -33,7 +33,7 @@ #include "chrome/common/net/url_fixer_upper.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "net/base/net_util.h" #include "net/base/registry_controlled_domains/registry_controlled_domain.h" #include "url/gurl.h" diff --git a/chrome/browser/bookmarks/bookmark_html_writer.cc b/chrome/browser/bookmarks/bookmark_html_writer.cc index 28c40a4..a044d03 100644 --- a/chrome/browser/bookmarks/bookmark_html_writer.cc +++ b/chrome/browser/bookmarks/bookmark_html_writer.cc @@ -18,8 +18,8 @@ #include "chrome/browser/chrome_notification_types.h" #include "chrome/browser/favicon/favicon_service.h" #include "chrome/browser/favicon/favicon_service_factory.h" -#include "components/bookmarks/core/browser/bookmark_codec.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_codec.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "components/favicon_base/favicon_types.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/notification_source.h" diff --git a/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc b/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc index 2d44669..b34a6cdcd 100644 --- a/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc +++ b/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc @@ -21,8 +21,8 @@ #include "chrome/common/importer/imported_favicon_usage.h" #include "chrome/test/base/testing_profile.h" #include "chrome/utility/importer/bookmark_html_reader.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/test/test_browser_thread_bundle.h" #include "grit/component_strings.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/chrome/browser/bookmarks/bookmark_model_factory.cc b/chrome/browser/bookmarks/bookmark_model_factory.cc index 6f8e1f4..fb34ffe 100644 --- a/chrome/browser/bookmarks/bookmark_model_factory.cc +++ b/chrome/browser/bookmarks/bookmark_model_factory.cc @@ -19,8 +19,8 @@ #include "chrome/browser/undo/bookmark_undo_service_factory.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/common/bookmark_pref_names.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/common/bookmark_pref_names.h" #include "components/keyed_service/content/browser_context_dependency_manager.h" #include "components/pref_registry/pref_registry_syncable.h" #include "content/public/browser/browser_thread.h" diff --git a/chrome/browser/bookmarks/bookmark_stats.cc b/chrome/browser/bookmarks/bookmark_stats.cc index 811c37d..5c3f37d 100644 --- a/chrome/browser/bookmarks/bookmark_stats.cc +++ b/chrome/browser/bookmarks/bookmark_stats.cc @@ -5,7 +5,7 @@ #include "chrome/browser/bookmarks/bookmark_stats.h" #include "base/metrics/histogram.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/user_metrics.h" void RecordBookmarkLaunch(const BookmarkNode* node, diff --git a/chrome/browser/bookmarks/chrome_bookmark_client.cc b/chrome/browser/bookmarks/chrome_bookmark_client.cc index 339e465..b31b80f 100644 --- a/chrome/browser/bookmarks/chrome_bookmark_client.cc +++ b/chrome/browser/bookmarks/chrome_bookmark_client.cc @@ -13,8 +13,8 @@ #include "chrome/browser/history/history_service_factory.h" #include "chrome/browser/history/url_database.h" #include "chrome/browser/profiles/profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node.h" #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_source.h" #include "content/public/browser/user_metrics.h" diff --git a/chrome/browser/bookmarks/chrome_bookmark_client.h b/chrome/browser/bookmarks/chrome_bookmark_client.h index f3ddfde..b1caf69 100644 --- a/chrome/browser/bookmarks/chrome_bookmark_client.h +++ b/chrome/browser/bookmarks/chrome_bookmark_client.h @@ -6,8 +6,8 @@ #define CHROME_BROWSER_BOOKMARKS_CHROME_BOOKMARK_CLIENT_H_ #include "base/compiler_specific.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_client.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_client.h" #include "components/keyed_service/core/keyed_service.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" diff --git a/chrome/browser/browser_commands_unittest.cc b/chrome/browser/browser_commands_unittest.cc index 723f9e9..4e9239b 100644 --- a/chrome/browser/browser_commands_unittest.cc +++ b/chrome/browser/browser_commands_unittest.cc @@ -11,8 +11,8 @@ #include "chrome/common/url_constants.h" #include "chrome/test/base/browser_with_test_window_test.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/navigation_controller.h" #include "content/public/browser/navigation_entry.h" #include "content/public/browser/web_contents.h" diff --git a/chrome/browser/diagnostics/recon_diagnostics.cc b/chrome/browser/diagnostics/recon_diagnostics.cc index 44fcc45..ffd80f2 100644 --- a/chrome/browser/diagnostics/recon_diagnostics.cc +++ b/chrome/browser/diagnostics/recon_diagnostics.cc @@ -19,7 +19,7 @@ #include "chrome/common/chrome_constants.h" #include "chrome/common/chrome_paths.h" #include "chrome/common/chrome_version_info.h" -#include "components/bookmarks/core/common/bookmark_constants.h" +#include "components/bookmarks/common/bookmark_constants.h" #if defined(OS_WIN) #include "base/win/windows_version.h" diff --git a/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api.cc b/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api.cc index fab0377..332efc2 100644 --- a/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api.cc +++ b/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api.cc @@ -23,10 +23,10 @@ #include "chrome/browser/undo/bookmark_undo_service_factory.h" #include "chrome/common/extensions/api/bookmark_manager_private.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/browser/scoped_group_bookmark_actions.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/browser/scoped_group_bookmark_actions.h" #include "components/user_prefs/user_prefs.h" #include "content/public/browser/render_view_host.h" #include "content/public/browser/web_contents.h" diff --git a/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api.h b/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api.h index 1aed39c..d84ad25 100644 --- a/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api.h +++ b/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api.h @@ -12,8 +12,8 @@ #include "chrome/browser/ui/bookmarks/bookmark_tab_helper.h" #include "chrome/browser/undo/bookmark_undo_service.h" #include "chrome/browser/undo/bookmark_undo_service_factory.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "extensions/browser/browser_context_keyed_api_factory.h" #include "extensions/browser/event_router.h" diff --git a/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_apitest.cc b/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_apitest.cc index ba2527d..0d5d25e 100644 --- a/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_apitest.cc +++ b/chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_apitest.cc @@ -12,8 +12,8 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/browser.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "components/user_prefs/user_prefs.h" // Times out on win syzyasan, http://crbug.com/166026 diff --git a/chrome/browser/extensions/api/bookmarks/bookmark_api_helpers.cc b/chrome/browser/extensions/api/bookmarks/bookmark_api_helpers.cc index c372d5b..182cbb4 100644 --- a/chrome/browser/extensions/api/bookmarks/bookmark_api_helpers.cc +++ b/chrome/browser/extensions/api/bookmarks/bookmark_api_helpers.cc @@ -11,8 +11,8 @@ #include "base/strings/utf_string_conversions.h" #include "chrome/browser/extensions/api/bookmarks/bookmark_api_constants.h" #include "chrome/common/extensions/api/bookmarks.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" namespace extensions { diff --git a/chrome/browser/extensions/api/bookmarks/bookmark_api_helpers_unittest.cc b/chrome/browser/extensions/api/bookmarks/bookmark_api_helpers_unittest.cc index df7c73e..5f49a8e 100644 --- a/chrome/browser/extensions/api/bookmarks/bookmark_api_helpers_unittest.cc +++ b/chrome/browser/extensions/api/bookmarks/bookmark_api_helpers_unittest.cc @@ -9,8 +9,8 @@ #include "base/values.h" #include "chrome/browser/extensions/api/bookmarks/bookmark_api_constants.h" #include "chrome/common/extensions/api/bookmarks.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "testing/gtest/include/gtest/gtest.h" namespace extensions { diff --git a/chrome/browser/extensions/api/bookmarks/bookmarks_api.cc b/chrome/browser/extensions/api/bookmarks/bookmarks_api.cc index 2a736b0..505fd0a 100644 --- a/chrome/browser/extensions/api/bookmarks/bookmarks_api.cc +++ b/chrome/browser/extensions/api/bookmarks/bookmarks_api.cc @@ -35,8 +35,8 @@ #include "chrome/common/extensions/api/bookmarks.h" #include "chrome/common/importer/importer_data_types.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "components/user_prefs/user_prefs.h" #include "content/public/browser/browser_context.h" #include "content/public/browser/notification_service.h" diff --git a/chrome/browser/extensions/api/bookmarks/bookmarks_api.h b/chrome/browser/extensions/api/bookmarks/bookmarks_api.h index 112f63e..fc73e0c 100644 --- a/chrome/browser/extensions/api/bookmarks/bookmarks_api.h +++ b/chrome/browser/extensions/api/bookmarks/bookmarks_api.h @@ -12,8 +12,8 @@ #include "base/compiler_specific.h" #include "base/memory/ref_counted.h" #include "chrome/browser/extensions/chrome_extension_function.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_node.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_node.h" #include "extensions/browser/browser_context_keyed_api_factory.h" #include "extensions/browser/event_router.h" #include "ui/shell_dialogs/select_file_dialog.h" diff --git a/chrome/browser/extensions/api/preferences_private/preferences_private_apitest.cc b/chrome/browser/extensions/api/preferences_private/preferences_private_apitest.cc index b17dc80..87891c4 100644 --- a/chrome/browser/extensions/api/preferences_private/preferences_private_apitest.cc +++ b/chrome/browser/extensions/api/preferences_private/preferences_private_apitest.cc @@ -25,7 +25,7 @@ #include "chrome/common/chrome_constants.h" #include "chrome/common/chrome_paths.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/common/bookmark_constants.h" +#include "components/bookmarks/common/bookmark_constants.h" #include "components/sync_driver/sync_prefs.h" #include "content/public/browser/browser_context.h" diff --git a/chrome/browser/extensions/lazy_background_page_apitest.cc b/chrome/browser/extensions/lazy_background_page_apitest.cc index d57b770..7ac6f42 100644 --- a/chrome/browser/extensions/lazy_background_page_apitest.cc +++ b/chrome/browser/extensions/lazy_background_page_apitest.cc @@ -20,9 +20,9 @@ #include "chrome/browser/ui/tabs/tab_strip_model.h" #include "chrome/common/url_constants.h" #include "chrome/test/base/ui_test_utils.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/web_contents.h" #include "content/public/test/browser_test_utils.h" diff --git a/chrome/browser/favicon/DEPS b/chrome/browser/favicon/DEPS index a12a262..40d15b4 100644 --- a/chrome/browser/favicon/DEPS +++ b/chrome/browser/favicon/DEPS @@ -25,7 +25,7 @@ include_rules = [ "!chrome/browser/history/select_favicon_frames.h", "!chrome/browser/profiles/profile.h", "!chrome/browser/ui/webui/chrome_web_ui_controller_factory.h", - "!components/bookmarks/core/browser/bookmark_model.h", + "!components/bookmarks/browser/bookmark_model.h", # Do not add to the list of temporarily-allowed dependencies above, # and please do not introduce more #includes of these files. ] diff --git a/chrome/browser/favicon/favicon_tab_helper.cc b/chrome/browser/favicon/favicon_tab_helper.cc index d5b4098..de713fa 100644 --- a/chrome/browser/favicon/favicon_tab_helper.cc +++ b/chrome/browser/favicon/favicon_tab_helper.cc @@ -15,7 +15,7 @@ #include "chrome/browser/search/search.h" #include "chrome/common/chrome_constants.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "components/favicon_base/favicon_types.h" #include "content/public/browser/favicon_status.h" #include "content/public/browser/invalidate_type.h" diff --git a/chrome/browser/history/DEPS b/chrome/browser/history/DEPS index d98fe68..3a899a4 100644 --- a/chrome/browser/history/DEPS +++ b/chrome/browser/history/DEPS @@ -50,9 +50,9 @@ include_rules = [ "!chrome/browser/ui/profile_error_dialog.h", "!chrome/browser/ui/webui/ntp/most_visited_handler.h", "!chrome/browser/ui/webui/ntp/new_tab_ui.h", - "!components/bookmarks/core/browser/bookmark_model.h", - "!components/bookmarks/core/browser/bookmark_service.h", - "!components/bookmarks/core/browser/bookmark_utils.h", + "!components/bookmarks/browser/bookmark_model.h", + "!components/bookmarks/browser/bookmark_service.h", + "!components/bookmarks/browser/bookmark_utils.h", ] specific_include_rules = { diff --git a/chrome/browser/history/android/android_history_provider_service_unittest.cc b/chrome/browser/history/android/android_history_provider_service_unittest.cc index a2647a2..11b32f9 100644 --- a/chrome/browser/history/android/android_history_provider_service_unittest.cc +++ b/chrome/browser/history/android/android_history_provider_service_unittest.cc @@ -12,7 +12,7 @@ #include "chrome/test/base/testing_browser_process.h" #include "chrome/test/base/testing_profile.h" #include "chrome/test/base/testing_profile_manager.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/browser_thread.h" #include "content/public/test/test_browser_thread.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/chrome/browser/history/android/android_provider_backend.cc b/chrome/browser/history/android/android_provider_backend.cc index 69db8f6..6a9449b 100644 --- a/chrome/browser/history/android/android_provider_backend.cc +++ b/chrome/browser/history/android/android_provider_backend.cc @@ -16,7 +16,7 @@ #include "chrome/browser/history/history_backend.h" #include "chrome/browser/history/history_database.h" #include "chrome/browser/history/thumbnail_database.h" -#include "components/bookmarks/core/browser/bookmark_service.h" +#include "components/bookmarks/browser/bookmark_service.h" #include "content/public/common/page_transition_types.h" #include "sql/connection.h" diff --git a/chrome/browser/history/android/android_provider_backend_unittest.cc b/chrome/browser/history/android/android_provider_backend_unittest.cc index 3fcdf37..cd86c07 100644 --- a/chrome/browser/history/android/android_provider_backend_unittest.cc +++ b/chrome/browser/history/android/android_provider_backend_unittest.cc @@ -22,8 +22,8 @@ #include "chrome/test/base/testing_browser_process.h" #include "chrome/test/base/testing_profile.h" #include "chrome/test/base/testing_profile_manager.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/browser_thread.h" #include "content/public/test/test_browser_thread.h" #include "content/public/test/test_utils.h" diff --git a/chrome/browser/history/android/bookmark_model_sql_handler.cc b/chrome/browser/history/android/bookmark_model_sql_handler.cc index 9cf21eb..a93e498 100644 --- a/chrome/browser/history/android/bookmark_model_sql_handler.cc +++ b/chrome/browser/history/android/bookmark_model_sql_handler.cc @@ -9,8 +9,8 @@ #include "chrome/browser/browser_process.h" #include "chrome/browser/history/url_database.h" #include "chrome/browser/profiles/profile_manager.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/browser_thread.h" using base::Time; diff --git a/chrome/browser/history/android/bookmark_model_sql_handler_unittest.cc b/chrome/browser/history/android/bookmark_model_sql_handler_unittest.cc index d1c443a..46130c4 100644 --- a/chrome/browser/history/android/bookmark_model_sql_handler_unittest.cc +++ b/chrome/browser/history/android/bookmark_model_sql_handler_unittest.cc @@ -13,8 +13,8 @@ #include "chrome/test/base/testing_browser_process.h" #include "chrome/test/base/testing_profile.h" #include "chrome/test/base/testing_profile_manager.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/browser_thread.h" #include "content/public/test/test_browser_thread.h" #include "content/public/test/test_utils.h" diff --git a/chrome/browser/history/android/sqlite_cursor_unittest.cc b/chrome/browser/history/android/sqlite_cursor_unittest.cc index a0a2521..d01e269 100644 --- a/chrome/browser/history/android/sqlite_cursor_unittest.cc +++ b/chrome/browser/history/android/sqlite_cursor_unittest.cc @@ -21,7 +21,7 @@ #include "chrome/test/base/testing_browser_process.h" #include "chrome/test/base/testing_profile.h" #include "chrome/test/base/testing_profile_manager.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/browser_thread.h" #include "content/public/test/test_browser_thread.h" #include "content/public/test/test_utils.h" diff --git a/chrome/browser/history/expire_history_backend.cc b/chrome/browser/history/expire_history_backend.cc index fc45c02..7ffede7 100644 --- a/chrome/browser/history/expire_history_backend.cc +++ b/chrome/browser/history/expire_history_backend.cc @@ -19,7 +19,7 @@ #include "chrome/browser/history/history_database.h" #include "chrome/browser/history/history_notifications.h" #include "chrome/browser/history/thumbnail_database.h" -#include "components/bookmarks/core/browser/bookmark_service.h" +#include "components/bookmarks/browser/bookmark_service.h" namespace history { diff --git a/chrome/browser/history/expire_history_backend_unittest.cc b/chrome/browser/history/expire_history_backend_unittest.cc index 405066e..feab732 100644 --- a/chrome/browser/history/expire_history_backend_unittest.cc +++ b/chrome/browser/history/expire_history_backend_unittest.cc @@ -26,9 +26,9 @@ #include "chrome/common/thumbnail_score.h" #include "chrome/test/base/testing_profile.h" #include "chrome/tools/profiles/thumbnail-inl.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "content/public/test/test_browser_thread.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/skia/include/core/SkBitmap.h" diff --git a/chrome/browser/history/history_backend.cc b/chrome/browser/history/history_backend.cc index 935c2a4..41cc227 100644 --- a/chrome/browser/history/history_backend.cc +++ b/chrome/browser/history/history_backend.cc @@ -37,7 +37,7 @@ #include "chrome/common/chrome_constants.h" #include "chrome/common/importer/imported_favicon_usage.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_service.h" +#include "components/bookmarks/browser/bookmark_service.h" #include "components/favicon_base/select_favicon_frames.h" #include "grit/chromium_strings.h" #include "grit/generated_resources.h" diff --git a/chrome/browser/history/history_backend_unittest.cc b/chrome/browser/history/history_backend_unittest.cc index b6230b3..5ab9a3a 100644 --- a/chrome/browser/history/history_backend_unittest.cc +++ b/chrome/browser/history/history_backend_unittest.cc @@ -32,10 +32,10 @@ #include "chrome/common/chrome_paths.h" #include "chrome/common/importer/imported_favicon_usage.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_source.h" #include "content/public/test/test_browser_thread.h" diff --git a/chrome/browser/history/history_service.cc b/chrome/browser/history/history_service.cc index 6bf46ee..1ec08d7 100644 --- a/chrome/browser/history/history_service.cc +++ b/chrome/browser/history/history_service.cc @@ -56,7 +56,7 @@ #include "chrome/common/pref_names.h" #include "chrome/common/thumbnail_score.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "components/visitedlink/browser/visitedlink_master.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/download_item.h" diff --git a/chrome/browser/history/history_service_factory.cc b/chrome/browser/history/history_service_factory.cc index f871104..13f137f 100644 --- a/chrome/browser/history/history_service_factory.cc +++ b/chrome/browser/history/history_service_factory.cc @@ -9,7 +9,7 @@ #include "chrome/browser/history/history_service.h" #include "chrome/browser/profiles/incognito_helpers.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "components/keyed_service/content/browser_context_dependency_manager.h" // static diff --git a/chrome/browser/history/in_memory_url_index.cc b/chrome/browser/history/in_memory_url_index.cc index 71a58c8..21797d7 100644 --- a/chrome/browser/history/in_memory_url_index.cc +++ b/chrome/browser/history/in_memory_url_index.cc @@ -16,7 +16,7 @@ #include "chrome/browser/history/url_index_private_data.h" #include "chrome/browser/profiles/profile.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_service.h" diff --git a/chrome/browser/history/in_memory_url_index_unittest.cc b/chrome/browser/history/in_memory_url_index_unittest.cc index ba06b21..5268e2d 100644 --- a/chrome/browser/history/in_memory_url_index_unittest.cc +++ b/chrome/browser/history/in_memory_url_index_unittest.cc @@ -28,7 +28,7 @@ #include "chrome/common/chrome_paths.h" #include "chrome/test/base/history_index_restore_observer.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_source.h" #include "content/public/test/test_browser_thread.h" diff --git a/chrome/browser/history/scored_history_match.cc b/chrome/browser/history/scored_history_match.cc index e44ea87..e713b25 100644 --- a/chrome/browser/history/scored_history_match.cc +++ b/chrome/browser/history/scored_history_match.cc @@ -19,8 +19,8 @@ #include "chrome/browser/autocomplete/history_url_provider.h" #include "chrome/browser/autocomplete/url_prefix.h" #include "chrome/browser/omnibox/omnibox_field_trial.h" -#include "components/bookmarks/core/browser/bookmark_service.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_service.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/browser_thread.h" namespace history { diff --git a/chrome/browser/history/scored_history_match_unittest.cc b/chrome/browser/history/scored_history_match_unittest.cc index 6e4f9a7..2ab39a9 100644 --- a/chrome/browser/history/scored_history_match_unittest.cc +++ b/chrome/browser/history/scored_history_match_unittest.cc @@ -8,7 +8,7 @@ #include "base/strings/string16.h" #include "base/strings/utf_string_conversions.h" #include "chrome/browser/history/scored_history_match.h" -#include "components/bookmarks/core/browser/bookmark_service.h" +#include "components/bookmarks/browser/bookmark_service.h" #include "testing/gtest/include/gtest/gtest.h" using base::ASCIIToUTF16; diff --git a/chrome/browser/history/url_index_private_data.cc b/chrome/browser/history/url_index_private_data.cc index da4a928..6dbfae7 100644 --- a/chrome/browser/history/url_index_private_data.cc +++ b/chrome/browser/history/url_index_private_data.cc @@ -24,8 +24,8 @@ #include "chrome/browser/history/history_db_task.h" #include "chrome/browser/history/history_service.h" #include "chrome/browser/history/in_memory_url_index.h" -#include "components/bookmarks/core/browser/bookmark_service.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_service.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "net/base/net_util.h" #if defined(USE_SYSTEM_PROTOBUF) diff --git a/chrome/browser/importer/external_process_importer_host.cc b/chrome/browser/importer/external_process_importer_host.cc index 260c0e7..73ceef3 100644 --- a/chrome/browser/importer/external_process_importer_host.cc +++ b/chrome/browser/importer/external_process_importer_host.cc @@ -14,7 +14,7 @@ #include "chrome/browser/importer/in_process_importer_bridge.h" #include "chrome/browser/search_engines/template_url_service.h" #include "chrome/browser/search_engines/template_url_service_factory.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/browser_thread.h" using content::BrowserThread; diff --git a/chrome/browser/importer/external_process_importer_host.h b/chrome/browser/importer/external_process_importer_host.h index 4dd60e0..6776ff45 100644 --- a/chrome/browser/importer/external_process_importer_host.h +++ b/chrome/browser/importer/external_process_importer_host.h @@ -14,7 +14,7 @@ #include "chrome/browser/importer/profile_writer.h" #include "chrome/browser/search_engines/template_url_service.h" #include "chrome/common/importer/importer_data_types.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" #include "ui/gfx/native_widget_types.h" class ExternalProcessImporterClient; diff --git a/chrome/browser/importer/profile_writer.cc b/chrome/browser/importer/profile_writer.cc index 7b647a5..983d6e3 100644 --- a/chrome/browser/importer/profile_writer.cc +++ b/chrome/browser/importer/profile_writer.cc @@ -28,7 +28,7 @@ #include "chrome/common/importer/imported_bookmark_entry.h" #include "chrome/common/importer/imported_favicon_usage.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "components/password_manager/core/browser/password_store.h" namespace { diff --git a/chrome/browser/importer/profile_writer_unittest.cc b/chrome/browser/importer/profile_writer_unittest.cc index 3ae714a..48b015a 100644 --- a/chrome/browser/importer/profile_writer_unittest.cc +++ b/chrome/browser/importer/profile_writer_unittest.cc @@ -15,10 +15,10 @@ #include "chrome/browser/importer/importer_unittest_utils.h" #include "chrome/common/importer/imported_bookmark_entry.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_match.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_match.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/test/test_browser_thread.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/chrome/browser/prefs/browser_prefs.cc b/chrome/browser/prefs/browser_prefs.cc index 0a79113..9c50ef9 100644 --- a/chrome/browser/prefs/browser_prefs.cc +++ b/chrome/browser/prefs/browser_prefs.cc @@ -89,7 +89,7 @@ #include "chrome/browser/web_resource/promo_resource_service.h" #include "chrome/common/pref_names.h" #include "components/autofill/core/browser/autofill_manager.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "components/password_manager/core/browser/password_manager.h" #include "components/pref_registry/pref_registry_syncable.h" #include "components/rappor/rappor_service.h" diff --git a/chrome/browser/profiles/bookmark_model_loaded_observer.cc b/chrome/browser/profiles/bookmark_model_loaded_observer.cc index fdb0e1d..015ebac 100644 --- a/chrome/browser/profiles/bookmark_model_loaded_observer.cc +++ b/chrome/browser/profiles/bookmark_model_loaded_observer.cc @@ -5,7 +5,7 @@ #include "chrome/browser/profiles/bookmark_model_loaded_observer.h" #include "chrome/browser/sync/profile_sync_service_factory.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" BookmarkModelLoadedObserver::BookmarkModelLoadedObserver(Profile* profile) : profile_(profile) { diff --git a/chrome/browser/profiles/bookmark_model_loaded_observer.h b/chrome/browser/profiles/bookmark_model_loaded_observer.h index 4e7a780..3b1c3e2 100644 --- a/chrome/browser/profiles/bookmark_model_loaded_observer.h +++ b/chrome/browser/profiles/bookmark_model_loaded_observer.h @@ -7,7 +7,7 @@ #include "base/basictypes.h" #include "base/compiler_specific.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" class Profile; diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc index 9bd452e..d0b7789 100644 --- a/chrome/browser/profiles/profile_impl.cc +++ b/chrome/browser/profiles/profile_impl.cc @@ -81,7 +81,7 @@ #include "chrome/common/net/url_fixer_upper.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "components/dom_distiller/content/dom_distiller_viewer_source.h" #include "components/keyed_service/content/browser_context_dependency_manager.h" #include "components/pref_registry/pref_registry_syncable.h" diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc index 22f0afa..debf2a3 100644 --- a/chrome/browser/profiles/profile_manager.cc +++ b/chrome/browser/profiles/profile_manager.cc @@ -46,7 +46,7 @@ #include "chrome/common/logging_chrome.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "components/signin/core/common/profile_management_switches.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/notification_service.h" diff --git a/chrome/browser/sync/glue/bookmark_change_processor.cc b/chrome/browser/sync/glue/bookmark_change_processor.cc index 1561c39..92324a8 100644 --- a/chrome/browser/sync/glue/bookmark_change_processor.cc +++ b/chrome/browser/sync/glue/bookmark_change_processor.cc @@ -23,8 +23,8 @@ #include "chrome/browser/undo/bookmark_undo_service.h" #include "chrome/browser/undo/bookmark_undo_service_factory.h" #include "chrome/browser/undo/bookmark_undo_utils.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/browser_thread.h" #include "sync/internal_api/public/change_record.h" #include "sync/internal_api/public/read_node.h" diff --git a/chrome/browser/sync/glue/bookmark_change_processor.h b/chrome/browser/sync/glue/bookmark_change_processor.h index dbb67f7..5234b8f 100644 --- a/chrome/browser/sync/glue/bookmark_change_processor.h +++ b/chrome/browser/sync/glue/bookmark_change_processor.h @@ -10,8 +10,8 @@ #include "base/compiler_specific.h" #include "chrome/browser/sync/glue/bookmark_model_associator.h" #include "chrome/browser/sync/glue/sync_backend_host.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_node.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_node.h" #include "components/sync_driver/change_processor.h" #include "components/sync_driver/data_type_error_handler.h" diff --git a/chrome/browser/sync/glue/bookmark_data_type_controller.cc b/chrome/browser/sync/glue/bookmark_data_type_controller.cc index ff7fdc0..9e9da92 100644 --- a/chrome/browser/sync/glue/bookmark_data_type_controller.cc +++ b/chrome/browser/sync/glue/bookmark_data_type_controller.cc @@ -13,7 +13,7 @@ #include "chrome/browser/sync/glue/chrome_report_unrecoverable_error.h" #include "chrome/browser/sync/profile_sync_components_factory.h" #include "chrome/browser/sync/profile_sync_service.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_source.h" diff --git a/chrome/browser/sync/glue/bookmark_data_type_controller.h b/chrome/browser/sync/glue/bookmark_data_type_controller.h index cc6af9a..2d4677f 100644 --- a/chrome/browser/sync/glue/bookmark_data_type_controller.h +++ b/chrome/browser/sync/glue/bookmark_data_type_controller.h @@ -9,7 +9,7 @@ #include "base/compiler_specific.h" #include "chrome/browser/sync/glue/frontend_data_type_controller.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" diff --git a/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc b/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc index e0dcc88..4e2e461 100644 --- a/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc +++ b/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc @@ -21,8 +21,8 @@ #include "chrome/browser/sync/profile_sync_service_mock.h" #include "chrome/common/pref_names.h" #include "chrome/test/base/profile_mock.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "components/keyed_service/content/refcounted_browser_context_keyed_service.h" #include "components/sync_driver/change_processor_mock.h" #include "components/sync_driver/data_type_controller_mock.h" diff --git a/chrome/browser/sync/glue/bookmark_model_associator.cc b/chrome/browser/sync/glue/bookmark_model_associator.cc index a51a471..ab29bac 100644 --- a/chrome/browser/sync/glue/bookmark_model_associator.cc +++ b/chrome/browser/sync/glue/bookmark_model_associator.cc @@ -22,8 +22,8 @@ #include "chrome/browser/undo/bookmark_undo_service.h" #include "chrome/browser/undo/bookmark_undo_service_factory.h" #include "chrome/browser/undo/bookmark_undo_utils.h" -#include "components/bookmarks/core/browser/bookmark_client.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_client.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/browser_thread.h" #include "sync/api/sync_error.h" #include "sync/internal_api/public/delete_journal.h" diff --git a/chrome/browser/sync/profile_sync_service_bookmark_unittest.cc b/chrome/browser/sync/profile_sync_service_bookmark_unittest.cc index 290f540..6b07ac6 100644 --- a/chrome/browser/sync/profile_sync_service_bookmark_unittest.cc +++ b/chrome/browser/sync/profile_sync_service_bookmark_unittest.cc @@ -27,9 +27,9 @@ #include "chrome/browser/sync/glue/bookmark_model_associator.h" #include "chrome/common/chrome_switches.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "components/sync_driver/data_type_error_handler.h" #include "components/sync_driver/data_type_error_handler_mock.h" #include "content/public/test/test_browser_thread.h" diff --git a/chrome/browser/sync/test/integration/bookmarks_helper.cc b/chrome/browser/sync/test/integration/bookmarks_helper.cc index b90cc66..e49b085 100644 --- a/chrome/browser/sync/test/integration/bookmarks_helper.cc +++ b/chrome/browser/sync/test/integration/bookmarks_helper.cc @@ -27,9 +27,9 @@ #include "chrome/browser/sync/test/integration/sync_test.h" #include "chrome/common/chrome_paths.h" #include "chrome/test/base/ui_test_utils.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/skia/include/core/SkBitmap.h" #include "ui/base/models/tree_node_iterator.h" diff --git a/chrome/browser/sync/test/integration/bookmarks_helper.h b/chrome/browser/sync/test/integration/bookmarks_helper.h index 2c08870..5604dea 100644 --- a/chrome/browser/sync/test/integration/bookmarks_helper.h +++ b/chrome/browser/sync/test/integration/bookmarks_helper.h @@ -10,7 +10,7 @@ #include <vector> #include "base/compiler_specific.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/skia/include/core/SkBitmap.h" #include "url/gurl.h" diff --git a/chrome/browser/sync/test/integration/single_client_bookmarks_sync_test.cc b/chrome/browser/sync/test/integration/single_client_bookmarks_sync_test.cc index ea1111a..75a39fb 100644 --- a/chrome/browser/sync/test/integration/single_client_bookmarks_sync_test.cc +++ b/chrome/browser/sync/test/integration/single_client_bookmarks_sync_test.cc @@ -8,8 +8,8 @@ #include "chrome/browser/sync/test/integration/bookmarks_helper.h" #include "chrome/browser/sync/test/integration/sync_integration_test_util.h" #include "chrome/browser/sync/test/integration/sync_test.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_service.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_service.h" #include "sync/test/fake_server/bookmark_entity_builder.h" #include "sync/test/fake_server/entity_builder_factory.h" #include "sync/test/fake_server/fake_server_verifier.h" diff --git a/chrome/browser/sync/test/integration/sync_test.cc b/chrome/browser/sync/test/integration/sync_test.cc index 156790e..c965b7d 100644 --- a/chrome/browser/sync/test/integration/sync_test.cc +++ b/chrome/browser/sync/test/integration/sync_test.cc @@ -49,7 +49,7 @@ #include "chrome/common/chrome_switches.h" #include "chrome/test/base/testing_browser_process.h" #include "chrome/test/base/ui_test_utils.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "components/invalidation/invalidation_switches.h" #include "components/invalidation/p2p_invalidation_service.h" #include "components/os_crypt/os_crypt.h" diff --git a/chrome/browser/ui/aura/tab_contents/web_drag_bookmark_handler_aura.cc b/chrome/browser/ui/aura/tab_contents/web_drag_bookmark_handler_aura.cc index f26eec6..d96511c 100644 --- a/chrome/browser/ui/aura/tab_contents/web_drag_bookmark_handler_aura.cc +++ b/chrome/browser/ui/aura/tab_contents/web_drag_bookmark_handler_aura.cc @@ -8,7 +8,7 @@ #include "chrome/browser/ui/browser.h" #include "chrome/browser/ui/browser_finder.h" #include "chrome/browser/ui/browser_window.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "content/public/browser/web_contents.h" #include "ui/base/dragdrop/os_exchange_data.h" diff --git a/chrome/browser/ui/aura/tab_contents/web_drag_bookmark_handler_aura.h b/chrome/browser/ui/aura/tab_contents/web_drag_bookmark_handler_aura.h index 56871c7..1d08174 100644 --- a/chrome/browser/ui/aura/tab_contents/web_drag_bookmark_handler_aura.h +++ b/chrome/browser/ui/aura/tab_contents/web_drag_bookmark_handler_aura.h @@ -5,7 +5,7 @@ #ifndef CHROME_BROWSER_UI_AURA_TAB_CONTENTS_WEB_DRAG_BOOKMARK_HANDLER_AURA_H_ #define CHROME_BROWSER_UI_AURA_TAB_CONTENTS_WEB_DRAG_BOOKMARK_HANDLER_AURA_H_ -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "content/public/browser/web_contents.h" #include "content/public/browser/web_drag_dest_delegate.h" diff --git a/chrome/browser/ui/bookmarks/bookmark_browsertest.cc b/chrome/browser/ui/bookmarks/bookmark_browsertest.cc index bd450eb..4d1b288 100644 --- a/chrome/browser/ui/bookmarks/bookmark_browsertest.cc +++ b/chrome/browser/ui/bookmarks/bookmark_browsertest.cc @@ -17,9 +17,9 @@ #include "chrome/browser/ui/host_desktop.h" #include "chrome/test/base/in_process_browser_test.h" #include "chrome/test/base/ui_test_utils.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/notification_service.h" #include "content/public/test/browser_test_utils.h" diff --git a/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.cc b/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.cc index 34bf409..03242ba 100644 --- a/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.cc +++ b/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.cc @@ -20,8 +20,8 @@ #include "chrome/browser/undo/bookmark_undo_service_factory.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/page_navigator.h" #include "content/public/browser/user_metrics.h" #include "grit/generated_resources.h" diff --git a/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.h b/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.h index 9d69400..352fc4f 100644 --- a/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.h +++ b/chrome/browser/ui/bookmarks/bookmark_context_menu_controller.h @@ -9,7 +9,7 @@ #include "base/basictypes.h" #include "base/memory/scoped_ptr.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" #include "ui/base/models/simple_menu_model.h" #include "ui/gfx/native_widget_types.h" diff --git a/chrome/browser/ui/bookmarks/bookmark_context_menu_controller_unittest.cc b/chrome/browser/ui/bookmarks/bookmark_context_menu_controller_unittest.cc index 66b4376..7393354 100644 --- a/chrome/browser/ui/bookmarks/bookmark_context_menu_controller_unittest.cc +++ b/chrome/browser/ui/bookmarks/bookmark_context_menu_controller_unittest.cc @@ -14,8 +14,8 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/bookmarks/bookmark_utils.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/page_navigator.h" #include "content/public/test/test_browser_thread.h" #include "grit/generated_resources.h" diff --git a/chrome/browser/ui/bookmarks/bookmark_drag_drop.cc b/chrome/browser/ui/bookmarks/bookmark_drag_drop.cc index 7aeb364..50053d8 100644 --- a/chrome/browser/ui/bookmarks/bookmark_drag_drop.cc +++ b/chrome/browser/ui/bookmarks/bookmark_drag_drop.cc @@ -8,10 +8,10 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/browser/undo/bookmark_undo_service.h" #include "chrome/browser/undo/bookmark_undo_service_factory.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/browser/scoped_group_bookmark_actions.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/browser/scoped_group_bookmark_actions.h" #include "ui/base/dragdrop/drag_drop_types.h" namespace chrome { diff --git a/chrome/browser/ui/bookmarks/bookmark_editor.h b/chrome/browser/ui/bookmarks/bookmark_editor.h index 38b4604..421c773 100644 --- a/chrome/browser/ui/bookmarks/bookmark_editor.h +++ b/chrome/browser/ui/bookmarks/bookmark_editor.h @@ -9,7 +9,7 @@ #include <vector> #include "base/strings/string16.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "ui/gfx/native_widget_types.h" class GURL; diff --git a/chrome/browser/ui/bookmarks/bookmark_editor_unittest.cc b/chrome/browser/ui/bookmarks/bookmark_editor_unittest.cc index d62f405..2fdc0c8 100644 --- a/chrome/browser/ui/bookmarks/bookmark_editor_unittest.cc +++ b/chrome/browser/ui/bookmarks/bookmark_editor_unittest.cc @@ -5,7 +5,7 @@ #include "chrome/browser/ui/bookmarks/bookmark_editor.h" #include "base/strings/utf_string_conversions.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "testing/gtest/include/gtest/gtest.h" using base::ASCIIToUTF16; diff --git a/chrome/browser/ui/bookmarks/bookmark_tab_helper.cc b/chrome/browser/ui/bookmarks/bookmark_tab_helper.cc index ae526df..10e1c22 100644 --- a/chrome/browser/ui/bookmarks/bookmark_tab_helper.cc +++ b/chrome/browser/ui/bookmarks/bookmark_tab_helper.cc @@ -14,7 +14,7 @@ #include "chrome/browser/ui/sad_tab.h" #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/navigation_entry.h" #include "content/public/browser/web_contents.h" diff --git a/chrome/browser/ui/bookmarks/bookmark_tab_helper.h b/chrome/browser/ui/bookmarks/bookmark_tab_helper.h index 60ea5dd..af6f38e 100644 --- a/chrome/browser/ui/bookmarks/bookmark_tab_helper.h +++ b/chrome/browser/ui/bookmarks/bookmark_tab_helper.h @@ -5,7 +5,7 @@ #ifndef CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_TAB_HELPER_H_ #define CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_TAB_HELPER_H_ -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" #include "content/public/browser/web_contents_observer.h" #include "content/public/browser/web_contents_user_data.h" diff --git a/chrome/browser/ui/bookmarks/bookmark_ui_utils_unittest.cc b/chrome/browser/ui/bookmarks/bookmark_ui_utils_unittest.cc index 292fbf8..5d02661 100644 --- a/chrome/browser/ui/bookmarks/bookmark_ui_utils_unittest.cc +++ b/chrome/browser/ui/bookmarks/bookmark_ui_utils_unittest.cc @@ -6,8 +6,8 @@ #include "base/strings/utf_string_conversions.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "testing/gtest/include/gtest/gtest.h" #if !defined(OS_ANDROID) && !defined(OS_IOS) diff --git a/chrome/browser/ui/bookmarks/bookmark_utils.cc b/chrome/browser/ui/bookmarks/bookmark_utils.cc index 0bbdad2..59c1aed 100644 --- a/chrome/browser/ui/bookmarks/bookmark_utils.cc +++ b/chrome/browser/ui/bookmarks/bookmark_utils.cc @@ -21,7 +21,7 @@ #include "chrome/browser/ui/tabs/tab_strip_model.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "components/user_prefs/user_prefs.h" #include "content/public/browser/web_contents.h" #include "extensions/browser/extension_registry.h" diff --git a/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.cc b/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.cc index c125265..09709cf 100644 --- a/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.cc +++ b/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.cc @@ -4,8 +4,8 @@ #include "chrome/browser/ui/bookmarks/recently_used_folders_combo_model.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/user_metrics.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" diff --git a/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.h b/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.h index 7efcb05..4e6ec9e 100644 --- a/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.h +++ b/chrome/browser/ui/bookmarks/recently_used_folders_combo_model.h @@ -10,7 +10,7 @@ #include "base/basictypes.h" #include "base/compiler_specific.h" #include "base/observer_list.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" #include "ui/base/models/combobox_model.h" class BookmarkModel; diff --git a/chrome/browser/ui/bookmarks/recently_used_folders_combo_model_unittest.cc b/chrome/browser/ui/bookmarks/recently_used_folders_combo_model_unittest.cc index 012ae2f..8175f5e 100644 --- a/chrome/browser/ui/bookmarks/recently_used_folders_combo_model_unittest.cc +++ b/chrome/browser/ui/bookmarks/recently_used_folders_combo_model_unittest.cc @@ -9,8 +9,8 @@ #include "base/strings/utf_string_conversions.h" #include "chrome/browser/bookmarks/bookmark_model_factory.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/test/test_browser_thread.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/base/models/combobox_model_observer.h" diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc index 3a7b08b..f3e71c1 100644 --- a/chrome/browser/ui/browser.cc +++ b/chrome/browser/ui/browser.cc @@ -148,8 +148,8 @@ #include "chrome/common/profiling.h" #include "chrome/common/search_types.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "components/startup_metric_utils/startup_metric_utils.h" #include "components/web_modal/web_contents_modal_dialog_manager.h" #include "content/public/browser/devtools_manager.h" diff --git a/chrome/browser/ui/browser_commands.cc b/chrome/browser/ui/browser_commands.cc index b266077..84149e4 100644 --- a/chrome/browser/ui/browser_commands.cc +++ b/chrome/browser/ui/browser_commands.cc @@ -59,8 +59,8 @@ #include "chrome/common/content_restriction.h" #include "chrome/common/extensions/manifest_handlers/app_launch_info.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "components/web_modal/web_contents_modal_dialog_manager.h" #include "content/public/browser/devtools_agent_host.h" #include "content/public/browser/navigation_controller.h" diff --git a/chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest.mm b/chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest.mm index 6d32c03..c6cab32 100644 --- a/chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest.mm +++ b/chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest.mm @@ -6,8 +6,8 @@ #include "chrome/browser/bookmarks/bookmark_model_factory.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" @implementation FakeAppDelegate diff --git a/chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript.mm b/chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript.mm index b02ace0..9da6b0b 100644 --- a/chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript.mm +++ b/chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript.mm @@ -10,7 +10,7 @@ #import "chrome/browser/ui/cocoa/applescript/bookmark_item_applescript.h" #import "chrome/browser/ui/cocoa/applescript/constants_applescript.h" #include "chrome/browser/ui/cocoa/applescript/error_applescript.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "url/gurl.h" @implementation BookmarkFolderAppleScript diff --git a/chrome/browser/ui/cocoa/applescript/bookmark_item_applescript.mm b/chrome/browser/ui/cocoa/applescript/bookmark_item_applescript.mm index 0299b0b..8387aa5 100644 --- a/chrome/browser/ui/cocoa/applescript/bookmark_item_applescript.mm +++ b/chrome/browser/ui/cocoa/applescript/bookmark_item_applescript.mm @@ -7,7 +7,7 @@ #include "base/strings/sys_string_conversions.h" #include "chrome/browser/profiles/profile_manager.h" #import "chrome/browser/ui/cocoa/applescript/error_applescript.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" @interface BookmarkItemAppleScript() @property (nonatomic, copy) NSString* tempURL; diff --git a/chrome/browser/ui/cocoa/applescript/bookmark_node_applescript.mm b/chrome/browser/ui/cocoa/applescript/bookmark_node_applescript.mm index 769ed95..cc3810d 100644 --- a/chrome/browser/ui/cocoa/applescript/bookmark_node_applescript.mm +++ b/chrome/browser/ui/cocoa/applescript/bookmark_node_applescript.mm @@ -13,7 +13,7 @@ #include "chrome/browser/profiles/profile.h" #import "chrome/browser/ui/cocoa/applescript/bookmark_item_applescript.h" #import "chrome/browser/ui/cocoa/applescript/error_applescript.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" @interface BookmarkNodeAppleScript() @property (nonatomic, copy) NSString* tempTitle; diff --git a/chrome/browser/ui/cocoa/applescript/browsercrapplication+applescript.mm b/chrome/browser/ui/cocoa/applescript/browsercrapplication+applescript.mm index 437f1d9..c75abe5 100644 --- a/chrome/browser/ui/cocoa/applescript/browsercrapplication+applescript.mm +++ b/chrome/browser/ui/cocoa/applescript/browsercrapplication+applescript.mm @@ -16,7 +16,7 @@ #import "chrome/browser/ui/cocoa/applescript/constants_applescript.h" #import "chrome/browser/ui/cocoa/applescript/error_applescript.h" #import "chrome/browser/ui/cocoa/applescript/window_applescript.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" @implementation BrowserCrApplication (AppleScriptAdditions) diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_all_tabs_controller.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_all_tabs_controller.mm index 6e2631c..4ba9edd 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_all_tabs_controller.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_all_tabs_controller.mm @@ -10,7 +10,7 @@ #include "chrome/browser/ui/browser_tabstrip.h" #include "chrome/browser/ui/cocoa/last_active_browser_cocoa.h" #include "chrome/browser/ui/tabs/tab_strip_model.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/web_contents.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util_mac.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_all_tabs_controller_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_all_tabs_controller_unittest.mm index 055ee07..c291c25 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_all_tabs_controller_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_all_tabs_controller_unittest.mm @@ -10,7 +10,7 @@ #import "chrome/browser/ui/cocoa/bookmarks/bookmark_all_tabs_controller.h" #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/platform_test.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_bridge.h b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_bridge.h index 2df470e..1b2b3c6 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_bridge.h +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_bridge.h @@ -14,7 +14,7 @@ #include "base/basictypes.h" #include "base/compiler_specific.h" #include "base/prefs/pref_change_registrar.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" class Profile; @class BookmarkBarController; diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_bridge.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_bridge.mm index 0bf2e91..a371a62 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_bridge.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_bridge.mm @@ -9,7 +9,7 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" BookmarkBarBridge::BookmarkBarBridge(Profile* profile, diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm index 64c9972..8c3c3fd 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm @@ -46,9 +46,9 @@ #include "chrome/common/extensions/extension_constants.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/user_metrics.h" #include "content/public/browser/web_contents.h" #include "extensions/browser/extension_registry.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller_unittest.mm index dfa9ad3..0810bf6 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller_unittest.mm @@ -25,9 +25,9 @@ #include "chrome/common/chrome_switches.h" #include "chrome/common/pref_names.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "testing/gtest/include/gtest/gtest.h" #import "testing/gtest_mac.h" #include "testing/platform_test.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.mm index a821fed..327e075 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.mm @@ -17,8 +17,8 @@ #import "chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target.h" #import "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller.h" #import "chrome/browser/ui/cocoa/browser_window_controller.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "ui/base/theme_provider.h" using bookmarks::kBookmarkBarMenuCornerRadius; diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller_unittest.mm index 4a9d8b2..5297998 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller_unittest.mm @@ -15,8 +15,8 @@ #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" #import "chrome/browser/ui/cocoa/view_resizer_pong.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "testing/gtest/include/gtest/gtest.h" #import "testing/gtest_mac.h" #include "testing/platform_test.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.mm index e3e8f65..47449fb 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.mm @@ -8,8 +8,8 @@ #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" #import "chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target.h" #import "chrome/browser/ui/cocoa/browser_window_controller.h" -#include "components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_pasteboard_helper_mac.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/user_metrics.h" using base::UserMetricsAction; diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view_unittest.mm index 3622718..b16fc59 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view_unittest.mm @@ -15,8 +15,8 @@ #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" #import "chrome/browser/ui/cocoa/url_drop_target.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/platform_test.h" #import "third_party/mozilla/NSPasteboard+Utils.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.mm index 2bf3c0e..c1e0d03 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.mm @@ -14,8 +14,8 @@ #import "chrome/browser/ui/cocoa/browser_window_controller.h" #import "chrome/browser/ui/cocoa/themed_window.h" #import "chrome/browser/ui/cocoa/view_id_util.h" -#include "components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_pasteboard_helper_mac.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/user_metrics.h" #import "third_party/mozilla/NSPasteboard+Utils.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view_unittest.mm index c5d989a..21b0466 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view_unittest.mm @@ -16,8 +16,8 @@ #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" #import "chrome/browser/ui/cocoa/url_drop_target.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/platform_test.h" #import "third_party/mozilla/NSPasteboard+Utils.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bubble_controller.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bubble_controller.mm index a56b0c2..066a875 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bubble_controller.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bubble_controller.mm @@ -14,8 +14,8 @@ #import "chrome/browser/ui/cocoa/browser_window_controller.h" #import "chrome/browser/ui/cocoa/info_bubble_view.h" #include "chrome/browser/ui/sync/sync_promo_ui.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" #include "content/public/browser/notification_service.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_button.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_button.mm index 8dbfc5b1..13da74c 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_button.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_button.mm @@ -14,7 +14,7 @@ #import "chrome/browser/ui/cocoa/browser_window_controller.h" #import "chrome/browser/ui/cocoa/nsview_additions.h" #import "chrome/browser/ui/cocoa/view_id_util.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/user_metrics.h" #include "ui/gfx/scoped_ns_graphics_context_save_gstate_mac.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.mm index f920d21..376e7d0 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.mm @@ -8,7 +8,7 @@ #include "base/strings/sys_string_conversions.h" #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button.h" #import "chrome/browser/ui/cocoa/bookmarks/bookmark_context_menu_cocoa_controller.h" -#import "components/bookmarks/core/browser/bookmark_model.h" +#import "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/user_metrics.h" #include "grit/generated_resources.h" #include "grit/ui_resources.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell_unittest.mm index 3b74815..9e44e47 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell_unittest.mm @@ -9,7 +9,7 @@ #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "grit/ui_resources.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/platform_test.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_button_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_button_unittest.mm index ba486ae..927efd0 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_button_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_button_unittest.mm @@ -9,7 +9,7 @@ #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.h" #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/platform_test.h" #import "ui/events/test/cocoa_test_event_utils.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_context_menu_cocoa_controller.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_context_menu_cocoa_controller.mm index 5fbae9f..9bcc498 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_context_menu_cocoa_controller.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_context_menu_cocoa_controller.mm @@ -10,7 +10,7 @@ #include "chrome/browser/ui/bookmarks/bookmark_context_menu_controller.h" #include "chrome/browser/ui/browser.h" #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #import "ui/base/cocoa/menu_controller.h" @interface BookmarkContextMenuCocoaController (Private) diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_drag_drop_cocoa.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_drag_drop_cocoa.mm index 7dfab68..9b54cc0 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_drag_drop_cocoa.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_drag_drop_cocoa.mm @@ -17,8 +17,8 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/bookmarks/bookmark_drag_drop.h" #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "grit/ui_resources.h" #include "ui/base/dragdrop/drag_drop_types.h" #include "ui/base/resource/resource_bundle.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.h b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.h index 38877017..4fdd514 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.h +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.h @@ -10,7 +10,7 @@ #include "base/mac/scoped_nsobject.h" #include "base/memory/scoped_ptr.h" #include "chrome/browser/ui/bookmarks/bookmark_editor.h" -#include "components/bookmarks/core/browser/bookmark_expanded_state_tracker.h" +#include "components/bookmarks/browser/bookmark_expanded_state_tracker.h" class BookmarkEditorBaseControllerBridge; class BookmarkModel; diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.mm index fd79bef..5cc1ade 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.mm @@ -18,7 +18,7 @@ #import "chrome/browser/ui/cocoa/bookmarks/bookmark_name_folder_controller.h" #import "chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.h" #import "chrome/browser/ui/cocoa/browser_window_controller.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" #include "ui/base/l10n/l10n_util_mac.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller_unittest.mm index 4efec98..a60327b 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller_unittest.mm @@ -11,7 +11,7 @@ #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" #include "chrome/test/base/test_browser_window.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "grit/generated_resources.h" #include "testing/gtest/include/gtest/gtest.h" #import "testing/gtest_mac.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.mm index a90933b..0ff15a8 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.mm @@ -10,8 +10,8 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/bookmarks/bookmark_utils.h" #include "chrome/common/net/url_fixer_upper.h" -#include "components/bookmarks/core/browser/bookmark_expanded_state_tracker.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_expanded_state_tracker.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "components/user_prefs/user_prefs.h" #include "ui/base/l10n/l10n_util.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller_unittest.mm index 5277504..a2027e5 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller_unittest.mm @@ -11,7 +11,7 @@ #import "chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.h" #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "testing/gtest/include/gtest/gtest.h" #import "testing/gtest_mac.h" #include "testing/platform_test.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target.mm index 687ff6b..a8a3377 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target.mm @@ -9,9 +9,9 @@ #include "chrome/browser/profiles/profile_manager.h" #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.h" #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" -#include "components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_pasteboard_helper_mac.h" #import "ui/base/cocoa/cocoa_base_utils.h" NSString* kBookmarkButtonDragType = @"ChromiumBookmarkButtonDragType"; diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target_unittest.mm index a8ea7ff..3eefbf3 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target_unittest.mm @@ -9,7 +9,7 @@ #import "chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target.h" #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/platform_test.h" #import "third_party/ocmock/OCMock/OCMock.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h b/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h index 972bfaf..9a88ca2 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h @@ -24,7 +24,7 @@ #include "base/mac/scoped_nsobject.h" #import "chrome/browser/ui/cocoa/main_menu_item.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" class BookmarkNode; class Profile; diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.mm index f0d3115..7073458 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.mm @@ -14,7 +14,7 @@ #include "chrome/browser/ui/browser_list.h" #include "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h" #import "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "grit/generated_resources.h" #include "grit/theme_resources.h" #include "grit/ui_resources.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge_unittest.mm index 04bd1df..008dce3 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge_unittest.mm @@ -11,7 +11,7 @@ #include "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h" #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "grit/generated_resources.h" #include "testing/gtest/include/gtest/gtest.h" #import "testing/gtest_mac.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller.mm index 3970458..e6efca5 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller.mm @@ -14,7 +14,7 @@ #import "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h" #import "chrome/browser/ui/cocoa/l10n_util.h" #include "chrome/browser/ui/host_desktop.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/user_metrics.h" #import "ui/base/cocoa/cocoa_base_utils.h" #import "ui/base/cocoa/menu_controller.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller_unittest.mm index 3b60bf9..78d7d436 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller_unittest.mm @@ -9,8 +9,8 @@ #import "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller.h" #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "testing/gtest/include/gtest/gtest.h" @interface FakeBookmarkMenuController : BookmarkMenuCocoaController { diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h b/chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h index a3818ee..7bae3c4 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h @@ -25,8 +25,8 @@ #include "base/basictypes.h" #include "base/mac/scoped_block.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" class BookmarkModelObserverForCocoa : public BookmarkModelObserver { public: diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_name_folder_controller_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_name_folder_controller_unittest.mm index 1f3a1c1..02ce8da 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_name_folder_controller_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_name_folder_controller_unittest.mm @@ -10,7 +10,7 @@ #import "chrome/browser/ui/cocoa/bookmarks/bookmark_name_folder_controller.h" #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "testing/gtest/include/gtest/gtest.h" #import "testing/gtest_mac.h" #include "testing/platform_test.h" diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.mm index 552d630..d914132 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.mm @@ -4,7 +4,7 @@ #import "chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" @implementation BookmarkTreeBrowserCell diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell_unittest.mm index bcc1800..8c6042d 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell_unittest.mm @@ -6,7 +6,7 @@ #import "base/mac/scoped_nsobject.h" #import "chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "testing/platform_test.h" class BookmarkTreeBrowserCellTest : public PlatformTest { diff --git a/chrome/browser/ui/cocoa/browser_window_cocoa.h b/chrome/browser/ui/cocoa/browser_window_cocoa.h index fcc3876..37429cd 100644 --- a/chrome/browser/ui/cocoa/browser_window_cocoa.h +++ b/chrome/browser/ui/cocoa/browser_window_cocoa.h @@ -10,7 +10,7 @@ #include "chrome/browser/extensions/extension_keybinding_registry.h" #include "chrome/browser/ui/browser_window.h" #include "chrome/browser/ui/search/search_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "ui/base/ui_base_types.h" class Browser; diff --git a/chrome/browser/ui/cocoa/cocoa_profile_test.mm b/chrome/browser/ui/cocoa/cocoa_profile_test.mm index 99c38b7..34a1195 100644 --- a/chrome/browser/ui/cocoa/cocoa_profile_test.mm +++ b/chrome/browser/ui/cocoa/cocoa_profile_test.mm @@ -16,7 +16,7 @@ #include "chrome/browser/ui/tabs/tab_strip_model.h" #include "chrome/test/base/testing_browser_process.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/test/test_browser_thread_bundle.h" CocoaProfileTest::CocoaProfileTest() diff --git a/chrome/browser/ui/cocoa/profiles/avatar_icon_controller_unittest.mm b/chrome/browser/ui/cocoa/profiles/avatar_icon_controller_unittest.mm index 23b14c1..6c36ae1 100644 --- a/chrome/browser/ui/cocoa/profiles/avatar_icon_controller_unittest.mm +++ b/chrome/browser/ui/cocoa/profiles/avatar_icon_controller_unittest.mm @@ -22,7 +22,7 @@ #include "chrome/browser/ui/tabs/tab_strip_model.h" #include "chrome/common/pref_names.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" class AvatarIconControllerTest : public CocoaProfileTest { public: diff --git a/chrome/browser/ui/cocoa/tab_contents/web_drag_bookmark_handler_mac.h b/chrome/browser/ui/cocoa/tab_contents/web_drag_bookmark_handler_mac.h index 7645efb..559a55c 100644 --- a/chrome/browser/ui/cocoa/tab_contents/web_drag_bookmark_handler_mac.h +++ b/chrome/browser/ui/cocoa/tab_contents/web_drag_bookmark_handler_mac.h @@ -6,7 +6,7 @@ #define CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_WEB_DRAG_BOOKMARK_HANDLER_MAC_H_ #include "base/compiler_specific.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "content/public/browser/web_drag_dest_delegate.h" class BookmarkTabHelper; diff --git a/chrome/browser/ui/cocoa/view_id_util_browsertest.mm b/chrome/browser/ui/cocoa/view_id_util_browsertest.mm index 60bc4e0..033a15c 100644 --- a/chrome/browser/ui/cocoa/view_id_util_browsertest.mm +++ b/chrome/browser/ui/cocoa/view_id_util_browsertest.mm @@ -17,9 +17,9 @@ #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" #include "chrome/test/base/in_process_browser_test.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "extensions/common/switches.h" using content::OpenURLParams; diff --git a/chrome/browser/ui/omnibox/omnibox_view_browsertest.cc b/chrome/browser/ui/omnibox/omnibox_view_browsertest.cc index 2250313..2cde269 100644 --- a/chrome/browser/ui/omnibox/omnibox_view_browsertest.cc +++ b/chrome/browser/ui/omnibox/omnibox_view_browsertest.cc @@ -33,9 +33,9 @@ #include "chrome/test/base/in_process_browser_test.h" #include "chrome/test/base/interactive_test_utils.h" #include "chrome/test/base/ui_test_utils.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/web_contents.h" #include "net/dns/mock_host_resolver.h" diff --git a/chrome/browser/ui/search/instant_extended_interactive_uitest.cc b/chrome/browser/ui/search/instant_extended_interactive_uitest.cc index c01f4e30..bfe8059 100644 --- a/chrome/browser/ui/search/instant_extended_interactive_uitest.cc +++ b/chrome/browser/ui/search/instant_extended_interactive_uitest.cc @@ -57,8 +57,8 @@ #include "chrome/test/base/in_process_browser_test.h" #include "chrome/test/base/interactive_test_utils.h" #include "chrome/test/base/ui_test_utils.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "components/sessions/serialized_navigation_entry.h" #include "content/public/browser/navigation_controller.h" #include "content/public/browser/navigation_entry.h" diff --git a/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc b/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc index cb315ab..a8dbd9f 100644 --- a/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc +++ b/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc @@ -18,7 +18,7 @@ #include "chrome/browser/history/history_types.h" #include "chrome/browser/profiles/profile.h" #include "chrome/common/extensions/sync_helper.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "extensions/browser/extension_system.h" #include "extensions/common/extension.h" #include "extensions/common/extension_set.h" diff --git a/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc b/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc index 091ec55..8809d62 100644 --- a/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc +++ b/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc @@ -28,8 +28,8 @@ #include "chrome/common/extensions/extension_constants.h" #include "chrome/test/base/testing_pref_service_syncable.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "components/pref_registry/pref_registry_syncable.h" #include "content/public/test/test_browser_thread_bundle.h" #include "content/public/test/test_utils.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc b/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc index fce7df8..b35d75a 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc @@ -47,7 +47,7 @@ #include "chrome/common/extensions/extension_constants.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_source.h" #include "content/public/browser/page_navigator.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bar_view.h b/chrome/browser/ui/views/bookmarks/bookmark_bar_view.h index 90a51e2..f9ca681 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_bar_view.h +++ b/chrome/browser/ui/views/bookmarks/bookmark_bar_view.h @@ -19,8 +19,8 @@ #include "chrome/browser/ui/views/bookmarks/bookmark_bubble_view_observer.h" #include "chrome/browser/ui/views/bookmarks/bookmark_menu_controller_observer.h" #include "chrome/browser/ui/views/detachable_toolbar_view.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "ui/gfx/animation/animation_delegate.h" #include "ui/views/context_menu_controller.h" #include "ui/views/controls/button/button.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bar_view_test.cc b/chrome/browser/ui/views/bookmarks/bookmark_bar_view_test.cc index 1f693b0..ceb8622 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_bar_view_test.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_bar_view_test.cc @@ -28,8 +28,8 @@ #include "chrome/test/base/testing_profile.h" #include "chrome/test/base/ui_test_utils.h" #include "chrome/test/base/view_event_test_base.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/page_navigator.h" #include "content/public/test/test_browser_thread.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc b/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc index d833edc..f51d1db 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc @@ -15,7 +15,7 @@ #include "chrome/test/base/browser_with_test_window_test.h" #include "chrome/test/base/scoped_testing_local_state.h" #include "chrome/test/base/testing_browser_process.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "ui/views/controls/button/text_button.h" class BookmarkBarViewInstantExtendedTest : public BrowserWithTestWindowTest { diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc b/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc index cbfdf75..fc61f39a 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc @@ -14,8 +14,8 @@ #include "chrome/browser/ui/sync/sync_promo_ui.h" #include "chrome/browser/ui/views/bookmarks/bookmark_bubble_view_observer.h" #include "chrome/browser/ui/views/bookmarks/bookmark_sync_promo_view.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/user_metrics.h" #include "grit/generated_resources.h" #include "grit/theme_resources.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bubble_view_unittest.cc b/chrome/browser/ui/views/bookmarks/bookmark_bubble_view_unittest.cc index 02f720c..d2d5d5b 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_bubble_view_unittest.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_bubble_view_unittest.cc @@ -12,8 +12,8 @@ #include "chrome/browser/signin/signin_manager_factory.h" #include "chrome/browser/ui/bookmarks/bookmark_bubble_delegate.h" #include "chrome/test/base/browser_with_test_window_test.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "components/signin/core/browser/signin_manager.h" namespace { diff --git a/chrome/browser/ui/views/bookmarks/bookmark_context_menu.cc b/chrome/browser/ui/views/bookmarks/bookmark_context_menu.cc index 8e4fd1d..dd2dfc4 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_context_menu.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_context_menu.cc @@ -8,7 +8,7 @@ #include "base/strings/utf_string_conversions.h" #include "chrome/app/chrome_command_ids.h" #include "chrome/browser/chrome_notification_types.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/notification_service.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_context_menu_unittest.cc b/chrome/browser/ui/views/bookmarks/bookmark_context_menu_unittest.cc index 07ff4d4..c01e35f 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_context_menu_unittest.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_context_menu_unittest.cc @@ -16,8 +16,8 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/bookmarks/bookmark_utils.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/browser/page_navigator.h" #include "content/public/test/test_browser_thread.h" #include "grit/generated_resources.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_drag_drop_views.cc b/chrome/browser/ui/views/bookmarks/bookmark_drag_drop_views.cc index 499b61f..5c1c3ed 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_drag_drop_views.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_drag_drop_views.cc @@ -10,8 +10,8 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/bookmarks/bookmark_drag_drop.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "components/user_prefs/user_prefs.h" #include "ui/base/dragdrop/drag_drop_types.h" #include "ui/base/dragdrop/os_exchange_data.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc b/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc index 99a1eee..d22fd94 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc @@ -17,8 +17,8 @@ #include "chrome/browser/ui/bookmarks/bookmark_utils.h" #include "chrome/browser/ui/views/constrained_window_views.h" #include "chrome/common/net/url_fixer_upper.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "components/user_prefs/user_prefs.h" #include "grit/chromium_strings.h" #include "grit/generated_resources.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_editor_view.h b/chrome/browser/ui/views/bookmarks/bookmark_editor_view.h index c275cce..e35537da 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_editor_view.h +++ b/chrome/browser/ui/views/bookmarks/bookmark_editor_view.h @@ -11,8 +11,8 @@ #include "base/gtest_prod_util.h" #include "base/strings/string16.h" #include "chrome/browser/ui/bookmarks/bookmark_editor.h" -#include "components/bookmarks/core/browser/bookmark_expanded_state_tracker.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_expanded_state_tracker.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" #include "ui/base/models/simple_menu_model.h" #include "ui/base/models/tree_node_model.h" #include "ui/views/context_menu_controller.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc b/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc index ae68e7b..e7b0a1e 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc @@ -12,8 +12,8 @@ #include "chrome/browser/bookmarks/bookmark_model_factory.h" #include "chrome/browser/profiles/profile.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/test/test_browser_thread.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/views/controls/textfield/textfield.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_menu_controller_views.cc b/chrome/browser/ui/views/bookmarks/bookmark_menu_controller_views.cc index b02c31c..681e0e6 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_menu_controller_views.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_menu_controller_views.cc @@ -12,7 +12,7 @@ #include "chrome/browser/ui/views/bookmarks/bookmark_menu_controller_observer.h" #include "chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/page_navigator.h" #include "content/public/browser/user_metrics.h" #include "grit/generated_resources.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_menu_controller_views.h b/chrome/browser/ui/views/bookmarks/bookmark_menu_controller_views.h index d5065ab..89ba38e 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_menu_controller_views.h +++ b/chrome/browser/ui/views/bookmarks/bookmark_menu_controller_views.h @@ -8,8 +8,8 @@ #include <set> #include "base/compiler_specific.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "ui/views/controls/menu/menu_delegate.h" class BookmarkBarView; diff --git a/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.cc b/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.cc index f3f0712..a7aa7da 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.cc @@ -15,7 +15,7 @@ #include "chrome/browser/ui/views/bookmarks/bookmark_drag_drop_views.h" #include "chrome/browser/ui/views/event_utils.h" #include "chrome/common/pref_names.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/page_navigator.h" #include "content/public/browser/user_metrics.h" #include "grit/generated_resources.h" diff --git a/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.h b/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.h index ede35f4..3d07b1e 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.h +++ b/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.h @@ -11,8 +11,8 @@ #include "base/compiler_specific.h" #include "chrome/browser/bookmarks/bookmark_stats.h" #include "chrome/browser/ui/views/bookmarks/bookmark_context_menu.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "ui/views/controls/menu/menu_delegate.h" class BookmarkNode; diff --git a/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate_unittest.cc b/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate_unittest.cc index fa2ba82..2e0331f 100644 --- a/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate_unittest.cc +++ b/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate_unittest.cc @@ -10,8 +10,8 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/test/base/browser_with_test_window_test.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "ui/views/controls/menu/menu_item_view.h" #include "ui/views/controls/menu/menu_runner.h" #include "ui/views/controls/menu/submenu_view.h" diff --git a/chrome/browser/ui/views/omnibox/omnibox_view_views.cc b/chrome/browser/ui/views/omnibox/omnibox_view_views.cc index bf17ef7..4c9a3da 100644 --- a/chrome/browser/ui/views/omnibox/omnibox_view_views.cc +++ b/chrome/browser/ui/views/omnibox/omnibox_view_views.cc @@ -22,7 +22,7 @@ #include "chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.h" #include "chrome/browser/ui/views/settings_api_bubble_helper_views.h" #include "chrome/browser/ui/views/website_settings/website_settings_popup_view.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "content/public/browser/web_contents.h" #include "extensions/common/constants.h" #include "grit/app_locale_settings.h" diff --git a/chrome/browser/ui/views/toolbar/toolbar_view_browsertest.cc b/chrome/browser/ui/views/toolbar/toolbar_view_browsertest.cc index 953bfb6..fae11af 100644 --- a/chrome/browser/ui/views/toolbar/toolbar_view_browsertest.cc +++ b/chrome/browser/ui/views/toolbar/toolbar_view_browsertest.cc @@ -13,8 +13,8 @@ #include "chrome/browser/ui/view_ids.h" #include "chrome/browser/ui/views/frame/browser_view.h" #include "chrome/test/base/in_process_browser_test.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "ui/views/focus/focus_manager.h" #include "ui/views/view.h" #include "ui/views/widget/widget.h" diff --git a/chrome/browser/ui/views/toolbar/wrench_menu.cc b/chrome/browser/ui/views/toolbar/wrench_menu.cc index 3db916d..b0f8c73 100644 --- a/chrome/browser/ui/views/toolbar/wrench_menu.cc +++ b/chrome/browser/ui/views/toolbar/wrench_menu.cc @@ -22,7 +22,7 @@ #include "chrome/browser/ui/toolbar/wrench_menu_model.h" #include "chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.h" #include "chrome/browser/ui/views/toolbar/wrench_menu_observer.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/host_zoom_map.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" diff --git a/chrome/browser/ui/views/toolbar/wrench_menu.h b/chrome/browser/ui/views/toolbar/wrench_menu.h index 39fd8d7..e248a31 100644 --- a/chrome/browser/ui/views/toolbar/wrench_menu.h +++ b/chrome/browser/ui/views/toolbar/wrench_menu.h @@ -10,7 +10,7 @@ #include "base/memory/scoped_ptr.h" #include "base/observer_list.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" #include "ui/base/models/menu_model.h" diff --git a/chrome/browser/ui/webui/history_ui.cc b/chrome/browser/ui/webui/history_ui.cc index 4eddfeb..65bf417 100644 --- a/chrome/browser/ui/webui/history_ui.cc +++ b/chrome/browser/ui/webui/history_ui.cc @@ -40,8 +40,8 @@ #include "chrome/common/chrome_switches.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_source.h" #include "content/public/browser/url_data_source.h" diff --git a/chrome/browser/undo/bookmark_undo_service.cc b/chrome/browser/undo/bookmark_undo_service.cc index 2b0a42e..03757cf 100644 --- a/chrome/browser/undo/bookmark_undo_service.cc +++ b/chrome/browser/undo/bookmark_undo_service.cc @@ -9,10 +9,10 @@ #include "chrome/browser/undo/bookmark_renumber_observer.h" #include "chrome/browser/undo/bookmark_undo_service_factory.h" #include "chrome/browser/undo/undo_operation.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/browser/scoped_group_bookmark_actions.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/browser/scoped_group_bookmark_actions.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" diff --git a/chrome/browser/undo/bookmark_undo_service.h b/chrome/browser/undo/bookmark_undo_service.h index 43f49f7..ef5686f 100644 --- a/chrome/browser/undo/bookmark_undo_service.h +++ b/chrome/browser/undo/bookmark_undo_service.h @@ -9,8 +9,8 @@ #include "chrome/browser/undo/bookmark_renumber_observer.h" #include "chrome/browser/undo/undo_manager.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "components/keyed_service/core/keyed_service.h" class Profile; diff --git a/chrome/browser/undo/bookmark_undo_service_test.cc b/chrome/browser/undo/bookmark_undo_service_test.cc index d29626d..4478264 100644 --- a/chrome/browser/undo/bookmark_undo_service_test.cc +++ b/chrome/browser/undo/bookmark_undo_service_test.cc @@ -8,8 +8,8 @@ #include "chrome/browser/bookmarks/bookmark_model_factory.h" #include "chrome/browser/undo/bookmark_undo_service_factory.h" #include "chrome/test/base/testing_profile.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "content/public/test/test_browser_thread_bundle.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi index 96efe21..a2b311b 100644 --- a/chrome/chrome_browser.gypi +++ b/chrome/chrome_browser.gypi @@ -28,7 +28,7 @@ 'safe_browsing_report_proto', 'suggestions_proto', '../components/components.gyp:autofill_core_browser', - '../components/components.gyp:bookmarks_core_browser', + '../components/components.gyp:bookmarks_browser', '../components/components.gyp:captive_portal', '../components/components.gyp:cloud_devices_common', '../components/components.gyp:component_metrics_proto', diff --git a/chrome/chrome_tests_unit.gypi b/chrome/chrome_tests_unit.gypi index a0d9987..1f783ca 100644 --- a/chrome/chrome_tests_unit.gypi +++ b/chrome/chrome_tests_unit.gypi @@ -21,7 +21,7 @@ '../components/components.gyp:password_manager_core_browser_test_support', '../components/components.gyp:signin_core_browser_test_support', '../components/components.gyp:sync_driver_test_support', - '../components/components.gyp:bookmarks_core_test_support', + '../components/components.gyp:bookmarks_test_support', '../content/content.gyp:content_app_both', '../content/content_shell_and_tests.gyp:test_support_content', '../net/net.gyp:net', diff --git a/chrome/common/DEPS b/chrome/common/DEPS index 23a65ab..3bedb13 100644 --- a/chrome/common/DEPS +++ b/chrome/common/DEPS @@ -4,7 +4,7 @@ include_rules = [ "+chromeos", # For chromeos_switches.h "+components/autofill/content/common", "+components/autofill/core/common", - "+components/bookmarks/core/common", + "+components/bookmarks/common", "+components/cloud_devices/common", "+components/data_reduction_proxy/common", "+components/nacl/common", diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index 0c13bb2..48d1c8f 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -12,7 +12,7 @@ #include "build/build_config.h" #include "components/autofill/core/common/autofill_pref_names.h" -#include "components/bookmarks/core/common/bookmark_pref_names.h" +#include "components/bookmarks/common/bookmark_pref_names.h" #include "components/data_reduction_proxy/common/data_reduction_proxy_pref_names.h" #include "components/signin/core/common/signin_pref_names.h" diff --git a/chrome/common_constants.gyp b/chrome/common_constants.gyp index 8df1796..c4061ba 100644 --- a/chrome/common_constants.gyp +++ b/chrome/common_constants.gyp @@ -70,7 +70,7 @@ 'dependencies': [ '../base/base.gyp:base', '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations', - '../components/components.gyp:bookmarks_core_common', + '../components/components.gyp:bookmarks_common', '../components/nacl.gyp:nacl_switches', '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', ], diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc index f6e8e02..4e394fc 100644 --- a/chrome/test/base/testing_profile.cc +++ b/chrome/test/base/testing_profile.cc @@ -57,8 +57,8 @@ #include "chrome/test/base/history_index_restore_observer.h" #include "chrome/test/base/testing_pref_service_syncable.h" #include "chrome/test/base/ui_test_utils.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/common/bookmark_constants.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/common/bookmark_constants.h" #include "components/keyed_service/content/browser_context_dependency_manager.h" #include "components/policy/core/common/policy_service.h" #include "components/user_prefs/user_prefs.h" diff --git a/chrome/test/base/ui_test_utils.cc b/chrome/test/base/ui_test_utils.cc index 94885c7..dafacf1 100644 --- a/chrome/test/base/ui_test_utils.cc +++ b/chrome/test/base/ui_test_utils.cc @@ -52,7 +52,7 @@ #include "chrome/common/chrome_paths.h" #include "chrome/common/pref_names.h" #include "chrome/test/base/find_in_page_observer.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "content/public/browser/dom_operation_notification_details.h" #include "content/public/browser/download_item.h" #include "content/public/browser/download_manager.h" diff --git a/components/bookmarks.gypi b/components/bookmarks.gypi index 9bcc08f..cef049f 100644 --- a/components/bookmarks.gypi +++ b/components/bookmarks.gypi @@ -5,7 +5,7 @@ { 'targets': [ { - 'target_name': 'bookmarks_core_browser', + 'target_name': 'bookmarks_browser', 'type': 'static_library', 'include_dirs': [ '..', @@ -17,7 +17,7 @@ '../ui/base/ui_base.gyp:ui_base', '../ui/gfx/gfx.gyp:gfx', '../url/url.gyp:url_lib', - 'bookmarks_core_common', + 'bookmarks_common', 'components_strings.gyp:components_strings', 'favicon_base', 'query_parser', @@ -25,41 +25,41 @@ 'pref_registry', ], 'sources': [ - 'bookmarks/core/browser/base_bookmark_model_observer.cc', - 'bookmarks/core/browser/base_bookmark_model_observer.h', - 'bookmarks/core/browser/bookmark_client.cc', - 'bookmarks/core/browser/bookmark_client.h', - 'bookmarks/core/browser/bookmark_codec.cc', - 'bookmarks/core/browser/bookmark_codec.h', - 'bookmarks/core/browser/bookmark_expanded_state_tracker.cc', - 'bookmarks/core/browser/bookmark_expanded_state_tracker.h', - 'bookmarks/core/browser/bookmark_index.cc', - 'bookmarks/core/browser/bookmark_index.h', - 'bookmarks/core/browser/bookmark_match.cc', - 'bookmarks/core/browser/bookmark_match.h', - 'bookmarks/core/browser/bookmark_model.cc', - 'bookmarks/core/browser/bookmark_model.h', - 'bookmarks/core/browser/bookmark_model_observer.h', - 'bookmarks/core/browser/bookmark_node.cc', - 'bookmarks/core/browser/bookmark_node.h', - 'bookmarks/core/browser/bookmark_node_data.cc', - 'bookmarks/core/browser/bookmark_node_data.h', - 'bookmarks/core/browser/bookmark_node_data_ios.cc', - 'bookmarks/core/browser/bookmark_node_data_mac.cc', - 'bookmarks/core/browser/bookmark_node_data_views.cc', - 'bookmarks/core/browser/bookmark_pasteboard_helper_mac.h', - 'bookmarks/core/browser/bookmark_pasteboard_helper_mac.mm', - 'bookmarks/core/browser/bookmark_service.h', - 'bookmarks/core/browser/bookmark_storage.cc', - 'bookmarks/core/browser/bookmark_storage.h', - 'bookmarks/core/browser/bookmark_utils.cc', - 'bookmarks/core/browser/bookmark_utils.h', - 'bookmarks/core/browser/scoped_group_bookmark_actions.cc', - 'bookmarks/core/browser/scoped_group_bookmark_actions.h', + 'bookmarks/browser/base_bookmark_model_observer.cc', + 'bookmarks/browser/base_bookmark_model_observer.h', + 'bookmarks/browser/bookmark_client.cc', + 'bookmarks/browser/bookmark_client.h', + 'bookmarks/browser/bookmark_codec.cc', + 'bookmarks/browser/bookmark_codec.h', + 'bookmarks/browser/bookmark_expanded_state_tracker.cc', + 'bookmarks/browser/bookmark_expanded_state_tracker.h', + 'bookmarks/browser/bookmark_index.cc', + 'bookmarks/browser/bookmark_index.h', + 'bookmarks/browser/bookmark_match.cc', + 'bookmarks/browser/bookmark_match.h', + 'bookmarks/browser/bookmark_model.cc', + 'bookmarks/browser/bookmark_model.h', + 'bookmarks/browser/bookmark_model_observer.h', + 'bookmarks/browser/bookmark_node.cc', + 'bookmarks/browser/bookmark_node.h', + 'bookmarks/browser/bookmark_node_data.cc', + 'bookmarks/browser/bookmark_node_data.h', + 'bookmarks/browser/bookmark_node_data_ios.cc', + 'bookmarks/browser/bookmark_node_data_mac.cc', + 'bookmarks/browser/bookmark_node_data_views.cc', + 'bookmarks/browser/bookmark_pasteboard_helper_mac.h', + 'bookmarks/browser/bookmark_pasteboard_helper_mac.mm', + 'bookmarks/browser/bookmark_service.h', + 'bookmarks/browser/bookmark_storage.cc', + 'bookmarks/browser/bookmark_storage.h', + 'bookmarks/browser/bookmark_utils.cc', + 'bookmarks/browser/bookmark_utils.h', + 'bookmarks/browser/scoped_group_bookmark_actions.cc', + 'bookmarks/browser/scoped_group_bookmark_actions.h', ], }, { - 'target_name': 'bookmarks_core_common', + 'target_name': 'bookmarks_common', 'type': 'static_library', 'include_dirs': [ '..', @@ -68,14 +68,14 @@ '../base/base.gyp:base', ], 'sources': [ - 'bookmarks/core/common/bookmark_constants.cc', - 'bookmarks/core/common/bookmark_constants.h', - 'bookmarks/core/common/bookmark_pref_names.cc', - 'bookmarks/core/common/bookmark_pref_names.h', + 'bookmarks/common/bookmark_constants.cc', + 'bookmarks/common/bookmark_constants.h', + 'bookmarks/common/bookmark_pref_names.cc', + 'bookmarks/common/bookmark_pref_names.h', ], }, { - 'target_name': 'bookmarks_core_test_support', + 'target_name': 'bookmarks_test_support', 'type': 'static_library', 'include_dirs': [ '..', @@ -84,13 +84,13 @@ '../base/base.gyp:base', '../ui/events/platform/events_platform.gyp:events_platform', '../url/url.gyp:url_lib', - 'bookmarks_core_browser', + 'bookmarks_browser', ], 'sources': [ - 'bookmarks/core/test/bookmark_test_helpers.cc', - 'bookmarks/core/test/bookmark_test_helpers.h', - 'bookmarks/core/test/test_bookmark_client.cc', - 'bookmarks/core/test/test_bookmark_client.h', + 'bookmarks/test/bookmark_test_helpers.cc', + 'bookmarks/test/bookmark_test_helpers.h', + 'bookmarks/test/test_bookmark_client.cc', + 'bookmarks/test/test_bookmark_client.h', ], 'conditions': [ ['use_x11==1', { diff --git a/components/bookmarks/core/browser/base_bookmark_model_observer.cc b/components/bookmarks/browser/base_bookmark_model_observer.cc index a150c16..4cf4289 100644 --- a/components/bookmarks/core/browser/base_bookmark_model_observer.cc +++ b/components/bookmarks/browser/base_bookmark_model_observer.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" void BaseBookmarkModelObserver::BookmarkModelLoaded(BookmarkModel* model, bool ids_reassigned) {} diff --git a/components/bookmarks/core/browser/base_bookmark_model_observer.h b/components/bookmarks/browser/base_bookmark_model_observer.h index a20394d..04003f9 100644 --- a/components/bookmarks/core/browser/base_bookmark_model_observer.h +++ b/components/bookmarks/browser/base_bookmark_model_observer.h @@ -2,12 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BASE_BOOKMARK_MODEL_OBSERVER_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BASE_BOOKMARK_MODEL_OBSERVER_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BASE_BOOKMARK_MODEL_OBSERVER_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BASE_BOOKMARK_MODEL_OBSERVER_H_ #include "base/basictypes.h" #include "base/compiler_specific.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" // Base class for a BookmarkModelObserver implementation. All mutations of the // model funnel into the method BookmarkModelChanged. @@ -51,4 +51,4 @@ class BaseBookmarkModelObserver : public BookmarkModelObserver { DISALLOW_COPY_AND_ASSIGN(BaseBookmarkModelObserver); }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BASE_BOOKMARK_MODEL_OBSERVER_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BASE_BOOKMARK_MODEL_OBSERVER_H_ diff --git a/components/bookmarks/core/browser/bookmark_client.cc b/components/bookmarks/browser/bookmark_client.cc index 4b600e3..8d8ed94 100644 --- a/components/bookmarks/core/browser/bookmark_client.cc +++ b/components/bookmarks/browser/bookmark_client.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_client.h" +#include "components/bookmarks/browser/bookmark_client.h" #include "base/logging.h" diff --git a/components/bookmarks/core/browser/bookmark_client.h b/components/bookmarks/browser/bookmark_client.h index 35ac509..77ed563 100644 --- a/components/bookmarks/core/browser/bookmark_client.h +++ b/components/bookmarks/browser/bookmark_client.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_CLIENT_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_CLIENT_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_CLIENT_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_CLIENT_H_ #include <set> #include <utility> @@ -74,4 +74,4 @@ class BookmarkClient { virtual ~BookmarkClient() {} }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_CLIENT_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_CLIENT_H_ diff --git a/components/bookmarks/core/browser/bookmark_codec.cc b/components/bookmarks/browser/bookmark_codec.cc index dfad469..413ee9c 100644 --- a/components/bookmarks/core/browser/bookmark_codec.cc +++ b/components/bookmarks/browser/bookmark_codec.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_codec.h" +#include "components/bookmarks/browser/bookmark_codec.h" #include <algorithm> @@ -10,7 +10,7 @@ #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "base/values.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "grit/component_strings.h" #include "ui/base/l10n/l10n_util.h" #include "url/gurl.h" diff --git a/components/bookmarks/core/browser/bookmark_codec.h b/components/bookmarks/browser/bookmark_codec.h index 909ed6e..ceca9c0 100644 --- a/components/bookmarks/core/browser/bookmark_codec.h +++ b/components/bookmarks/browser/bookmark_codec.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_CODEC_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_CODEC_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_CODEC_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_CODEC_H_ #include <set> #include <string> @@ -11,7 +11,7 @@ #include "base/basictypes.h" #include "base/md5.h" #include "base/strings/string16.h" -#include "components/bookmarks/core/browser/bookmark_node.h" +#include "components/bookmarks/browser/bookmark_node.h" class BookmarkModel; @@ -204,4 +204,4 @@ class BookmarkCodec { DISALLOW_COPY_AND_ASSIGN(BookmarkCodec); }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_CODEC_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_CODEC_H_ diff --git a/components/bookmarks/core/browser/bookmark_codec_unittest.cc b/components/bookmarks/browser/bookmark_codec_unittest.cc index 4321eb9..6279f92 100644 --- a/components/bookmarks/core/browser/bookmark_codec_unittest.cc +++ b/components/bookmarks/browser/bookmark_codec_unittest.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_codec.h" +#include "components/bookmarks/browser/bookmark_codec.h" #include "base/file_util.h" #include "base/files/file_path.h" @@ -13,8 +13,8 @@ #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "base/values.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "testing/gtest/include/gtest/gtest.h" using base::ASCIIToUTF16; diff --git a/components/bookmarks/core/browser/bookmark_expanded_state_tracker.cc b/components/bookmarks/browser/bookmark_expanded_state_tracker.cc index 2a7bf34..a79d9ed 100644 --- a/components/bookmarks/core/browser/bookmark_expanded_state_tracker.cc +++ b/components/bookmarks/browser/bookmark_expanded_state_tracker.cc @@ -2,14 +2,14 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_expanded_state_tracker.h" +#include "components/bookmarks/browser/bookmark_expanded_state_tracker.h" #include "base/prefs/pref_service.h" #include "base/strings/string_number_conversions.h" #include "base/values.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/common/bookmark_pref_names.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/common/bookmark_pref_names.h" BookmarkExpandedStateTracker::BookmarkExpandedStateTracker( BookmarkModel* bookmark_model, diff --git a/components/bookmarks/core/browser/bookmark_expanded_state_tracker.h b/components/bookmarks/browser/bookmark_expanded_state_tracker.h index 77d3391..9473a2a 100644 --- a/components/bookmarks/core/browser/bookmark_expanded_state_tracker.h +++ b/components/bookmarks/browser/bookmark_expanded_state_tracker.h @@ -2,12 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_ #include <set> -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" class BookmarkModel; class BookmarkNode; @@ -53,4 +53,4 @@ class BookmarkExpandedStateTracker : public BaseBookmarkModelObserver { DISALLOW_COPY_AND_ASSIGN(BookmarkExpandedStateTracker); }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_ diff --git a/components/bookmarks/core/browser/bookmark_expanded_state_tracker_unittest.cc b/components/bookmarks/browser/bookmark_expanded_state_tracker_unittest.cc index b45d954..71cb2d0 100644 --- a/components/bookmarks/core/browser/bookmark_expanded_state_tracker_unittest.cc +++ b/components/bookmarks/browser/bookmark_expanded_state_tracker_unittest.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_expanded_state_tracker.h" +#include "components/bookmarks/browser/bookmark_expanded_state_tracker.h" #include "base/files/file_path.h" #include "base/message_loop/message_loop.h" @@ -11,10 +11,10 @@ #include "base/prefs/testing_pref_store.h" #include "base/run_loop.h" #include "base/strings/utf_string_conversions.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/common/bookmark_pref_names.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/common/bookmark_pref_names.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "components/pref_registry/pref_registry_syncable.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/components/bookmarks/core/browser/bookmark_index.cc b/components/bookmarks/browser/bookmark_index.cc index 824f220..00a4902 100644 --- a/components/bookmarks/core/browser/bookmark_index.cc +++ b/components/bookmarks/browser/bookmark_index.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_index.h" +#include "components/bookmarks/browser/bookmark_index.h" #include <algorithm> #include <functional> @@ -12,10 +12,10 @@ #include "base/i18n/case_conversion.h" #include "base/logging.h" #include "base/strings/utf_offset_string_conversions.h" -#include "components/bookmarks/core/browser/bookmark_client.h" -#include "components/bookmarks/core/browser/bookmark_match.h" -#include "components/bookmarks/core/browser/bookmark_node.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_client.h" +#include "components/bookmarks/browser/bookmark_match.h" +#include "components/bookmarks/browser/bookmark_node.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "components/query_parser/snippet.h" #include "third_party/icu/source/common/unicode/normalizer2.h" diff --git a/components/bookmarks/core/browser/bookmark_index.h b/components/bookmarks/browser/bookmark_index.h index f82742c..fed0ab3 100644 --- a/components/bookmarks/core/browser/bookmark_index.h +++ b/components/bookmarks/browser/bookmark_index.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_INDEX_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_INDEX_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_INDEX_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_INDEX_H_ #include <map> #include <set> @@ -117,4 +117,4 @@ class BookmarkIndex { DISALLOW_COPY_AND_ASSIGN(BookmarkIndex); }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_INDEX_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_INDEX_H_ diff --git a/components/bookmarks/core/browser/bookmark_index_unittest.cc b/components/bookmarks/browser/bookmark_index_unittest.cc index b4094d0..1153412 100644 --- a/components/bookmarks/core/browser/bookmark_index_unittest.cc +++ b/components/bookmarks/browser/bookmark_index_unittest.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_index.h" +#include "components/bookmarks/browser/bookmark_index.h" #include <string> #include <vector> @@ -12,10 +12,10 @@ #include "base/strings/string_split.h" #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" -#include "components/bookmarks/core/browser/bookmark_match.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/browser/bookmark_match.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "testing/gtest/include/gtest/gtest.h" using base::ASCIIToUTF16; diff --git a/components/bookmarks/core/browser/bookmark_match.cc b/components/bookmarks/browser/bookmark_match.cc index 6a3d303..29ad044 100644 --- a/components/bookmarks/core/browser/bookmark_match.cc +++ b/components/bookmarks/browser/bookmark_match.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_match.h" +#include "components/bookmarks/browser/bookmark_match.h" #include "base/logging.h" #include "base/strings/string16.h" diff --git a/components/bookmarks/core/browser/bookmark_match.h b/components/bookmarks/browser/bookmark_match.h index b53f9c8..c033e4f3 100644 --- a/components/bookmarks/core/browser/bookmark_match.h +++ b/components/bookmarks/browser/bookmark_match.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_TITLE_MATCH_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_TITLE_MATCH_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_TITLE_MATCH_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_TITLE_MATCH_H_ #include <cstddef> #include <utility> @@ -41,4 +41,4 @@ struct BookmarkMatch { MatchPositions url_match_positions; }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_TITLE_MATCH_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_TITLE_MATCH_H_ diff --git a/components/bookmarks/core/browser/bookmark_model.cc b/components/bookmarks/browser/bookmark_model.cc index 2791146..3caf661 100644 --- a/components/bookmarks/core/browser/bookmark_model.cc +++ b/components/bookmarks/browser/bookmark_model.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include <algorithm> #include <functional> @@ -13,13 +13,13 @@ #include "base/logging.h" #include "base/macros.h" #include "base/strings/string_util.h" -#include "components/bookmarks/core/browser/bookmark_expanded_state_tracker.h" -#include "components/bookmarks/core/browser/bookmark_index.h" -#include "components/bookmarks/core/browser/bookmark_match.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" -#include "components/bookmarks/core/browser/bookmark_storage.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_expanded_state_tracker.h" +#include "components/bookmarks/browser/bookmark_index.h" +#include "components/bookmarks/browser/bookmark_match.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_storage.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "components/favicon_base/favicon_types.h" #include "grit/component_strings.h" #include "ui/base/l10n/l10n_util.h" diff --git a/components/bookmarks/core/browser/bookmark_model.h b/components/bookmarks/browser/bookmark_model.h index 818929f..de7a2c8 100644 --- a/components/bookmarks/core/browser/bookmark_model.h +++ b/components/bookmarks/browser/bookmark_model.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_MODEL_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_MODEL_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_MODEL_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_MODEL_H_ #include <map> #include <set> @@ -17,9 +17,9 @@ #include "base/strings/string16.h" #include "base/synchronization/lock.h" #include "base/synchronization/waitable_event.h" -#include "components/bookmarks/core/browser/bookmark_client.h" -#include "components/bookmarks/core/browser/bookmark_node.h" -#include "components/bookmarks/core/browser/bookmark_service.h" +#include "components/bookmarks/browser/bookmark_client.h" +#include "components/bookmarks/browser/bookmark_node.h" +#include "components/bookmarks/browser/bookmark_service.h" #include "ui/gfx/image/image.h" #include "url/gurl.h" @@ -421,4 +421,4 @@ class BookmarkModel : public BookmarkService { DISALLOW_COPY_AND_ASSIGN(BookmarkModel); }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_MODEL_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_MODEL_H_ diff --git a/components/bookmarks/core/browser/bookmark_model_observer.h b/components/bookmarks/browser/bookmark_model_observer.h index 2377ae4..8091758 100644 --- a/components/bookmarks/core/browser/bookmark_model_observer.h +++ b/components/bookmarks/browser/bookmark_model_observer.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_MODEL_OBSERVER_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_MODEL_OBSERVER_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_MODEL_OBSERVER_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_MODEL_OBSERVER_H_ #include <set> @@ -121,4 +121,4 @@ class BookmarkModelObserver { virtual ~BookmarkModelObserver() {} }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_MODEL_OBSERVER_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_MODEL_OBSERVER_H_ diff --git a/components/bookmarks/core/browser/bookmark_model_unittest.cc b/components/bookmarks/browser/bookmark_model_unittest.cc index b721485..6d7eeef 100644 --- a/components/bookmarks/core/browser/bookmark_model_unittest.cc +++ b/components/bookmarks/browser/bookmark_model_unittest.cc @@ -1,8 +1,8 @@ -// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" #include <set> #include <string> @@ -19,10 +19,10 @@ #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "base/time/time.h" -#include "components/bookmarks/core/browser/bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/browser/bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_utils.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/base/models/tree_node_iterator.h" #include "ui/base/models/tree_node_model.h" diff --git a/components/bookmarks/core/browser/bookmark_node.cc b/components/bookmarks/browser/bookmark_node.cc index 89a2617..cd9fe0e 100644 --- a/components/bookmarks/core/browser/bookmark_node.cc +++ b/components/bookmarks/browser/bookmark_node.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_node.h" +#include "components/bookmarks/browser/bookmark_node.h" #include <map> #include <string> diff --git a/components/bookmarks/core/browser/bookmark_node.h b/components/bookmarks/browser/bookmark_node.h index 6ed275b..f53c0d0 100644 --- a/components/bookmarks/core/browser/bookmark_node.h +++ b/components/bookmarks/browser/bookmark_node.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_H_ #include "base/memory/scoped_ptr.h" #include "base/task/cancelable_task_tracker.h" @@ -209,4 +209,4 @@ class BookmarkPermanentNode : public BookmarkNode { DISALLOW_COPY_AND_ASSIGN(BookmarkPermanentNode); }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_H_ diff --git a/components/bookmarks/core/browser/bookmark_node_data.cc b/components/bookmarks/browser/bookmark_node_data.cc index 0e356eb..0e36d0a 100644 --- a/components/bookmarks/core/browser/bookmark_node_data.cc +++ b/components/bookmarks/browser/bookmark_node_data.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include <string> @@ -10,7 +10,7 @@ #include "base/pickle.h" #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include "ui/base/clipboard/scoped_clipboard_writer.h" const char* BookmarkNodeData::kClipboardFormatString = @@ -134,7 +134,8 @@ bool BookmarkNodeData::ReadFromVector( return true; } -bool BookmarkNodeData::ReadFromTuple(const GURL& url, const base::string16& title) { +bool BookmarkNodeData::ReadFromTuple(const GURL& url, + const base::string16& title) { Clear(); if (!url.is_valid()) diff --git a/components/bookmarks/core/browser/bookmark_node_data.h b/components/bookmarks/browser/bookmark_node_data.h index 303223f..9fdf975 100644 --- a/components/bookmarks/core/browser/bookmark_node_data.h +++ b/components/bookmarks/browser/bookmark_node_data.h @@ -2,15 +2,15 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_DATA_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_DATA_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_ #include <vector> #include "base/files/file_path.h" #include "base/strings/string16.h" #include "base/time/time.h" -#include "components/bookmarks/core/browser/bookmark_node.h" +#include "components/bookmarks/browser/bookmark_node.h" #include "ui/base/clipboard/clipboard_types.h" #include "url/gurl.h" @@ -171,4 +171,4 @@ struct BookmarkNodeData { base::FilePath profile_path_; }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_DATA_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_ diff --git a/components/bookmarks/core/browser/bookmark_node_data_ios.cc b/components/bookmarks/browser/bookmark_node_data_ios.cc index 861b2eb..cbf6e8d 100644 --- a/components/bookmarks/core/browser/bookmark_node_data_ios.cc +++ b/components/bookmarks/browser/bookmark_node_data_ios.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "base/logging.h" diff --git a/components/bookmarks/core/browser/bookmark_node_data_mac.cc b/components/bookmarks/browser/bookmark_node_data_mac.cc index dba2920..1523885 100644 --- a/components/bookmarks/core/browser/bookmark_node_data_mac.cc +++ b/components/bookmarks/browser/bookmark_node_data_mac.cc @@ -2,9 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_node_data.h" -#include "components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.h" +#include "components/bookmarks/browser/bookmark_pasteboard_helper_mac.h" // static bool BookmarkNodeData::ClipboardContainsBookmarks() { diff --git a/components/bookmarks/core/browser/bookmark_node_data_unittest.cc b/components/bookmarks/browser/bookmark_node_data_unittest.cc index 1553b94..bda1047 100644 --- a/components/bookmarks/core/browser/bookmark_node_data_unittest.cc +++ b/components/bookmarks/browser/bookmark_node_data_unittest.cc @@ -7,10 +7,10 @@ #include "base/memory/scoped_ptr.h" #include "base/strings/string16.h" #include "base/strings/utf_string_conversions.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" -#include "components/bookmarks/core/test/bookmark_test_helpers.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node_data.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/base/dragdrop/os_exchange_data.h" #include "ui/events/platform/platform_event_source.h" diff --git a/components/bookmarks/core/browser/bookmark_node_data_views.cc b/components/bookmarks/browser/bookmark_node_data_views.cc index b5c99fe..b34116a 100644 --- a/components/bookmarks/core/browser/bookmark_node_data_views.cc +++ b/components/bookmarks/browser/bookmark_node_data_views.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #include "base/logging.h" #include "base/pickle.h" diff --git a/components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.h b/components/bookmarks/browser/bookmark_pasteboard_helper_mac.h index c990e12..aecb727 100644 --- a/components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.h +++ b/components/bookmarks/browser/bookmark_pasteboard_helper_mac.h @@ -2,10 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_PASTEBOARD_HELPER_MAC_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_PASTEBOARD_HELPER_MAC_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_PASTEBOARD_HELPER_MAC_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_PASTEBOARD_HELPER_MAC_H_ -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_node_data.h" #if defined(__OBJC__) @class NSString; @@ -40,4 +40,4 @@ bool PasteboardContainsBookmarks(ui::ClipboardType type); extern "C" NSString* const kBookmarkDictionaryListPboardType; #endif // __OBJC__ -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_PASTEBOARD_HELPER_MAC_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_PASTEBOARD_HELPER_MAC_H_ diff --git a/components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.mm b/components/bookmarks/browser/bookmark_pasteboard_helper_mac.mm index 04e2df7..845929a 100644 --- a/components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.mm +++ b/components/bookmarks/browser/bookmark_pasteboard_helper_mac.mm @@ -2,13 +2,13 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.h" +#include "components/bookmarks/browser/bookmark_pasteboard_helper_mac.h" #import <Cocoa/Cocoa.h> #include "base/files/file_path.h" #include "base/strings/sys_string_conversions.h" -#include "components/bookmarks/core/browser/bookmark_node.h" +#include "components/bookmarks/browser/bookmark_node.h" #include "ui/base/clipboard/clipboard.h" NSString* const kBookmarkDictionaryListPboardType = @@ -100,7 +100,8 @@ bool ReadWebURLsWithTitlesPboardType( NSUInteger len = [titlesArr count]; for (NSUInteger i = 0; i < len; ++i) { - base::string16 title = base::SysNSStringToUTF16([titlesArr objectAtIndex:i]); + base::string16 title = + base::SysNSStringToUTF16([titlesArr objectAtIndex:i]); std::string url = base::SysNSStringToUTF8([urlsArr objectAtIndex:i]); if (!url.empty()) { BookmarkNodeData::Element element; diff --git a/components/bookmarks/core/browser/bookmark_service.h b/components/bookmarks/browser/bookmark_service.h index 3aaa076..22c5568 100644 --- a/components/bookmarks/core/browser/bookmark_service.h +++ b/components/bookmarks/browser/bookmark_service.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_SERVICE_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_SERVICE_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_SERVICE_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_SERVICE_H_ #include <vector> @@ -40,4 +40,4 @@ class BookmarkService { virtual ~BookmarkService() {} }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_SERVICE_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_SERVICE_H_ diff --git a/components/bookmarks/core/browser/bookmark_storage.cc b/components/bookmarks/browser/bookmark_storage.cc index 29709c4..f8a20de 100644 --- a/components/bookmarks/core/browser/bookmark_storage.cc +++ b/components/bookmarks/browser/bookmark_storage.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_storage.h" +#include "components/bookmarks/browser/bookmark_storage.h" #include "base/bind.h" #include "base/compiler_specific.h" @@ -12,10 +12,10 @@ #include "base/metrics/histogram.h" #include "base/sequenced_task_runner.h" #include "base/time/time.h" -#include "components/bookmarks/core/browser/bookmark_codec.h" -#include "components/bookmarks/core/browser/bookmark_index.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/common/bookmark_constants.h" +#include "components/bookmarks/browser/bookmark_codec.h" +#include "components/bookmarks/browser/bookmark_index.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/common/bookmark_constants.h" #include "components/startup_metric_utils/startup_metric_utils.h" using base::TimeTicks; diff --git a/components/bookmarks/core/browser/bookmark_storage.h b/components/bookmarks/browser/bookmark_storage.h index 4e0cd24..ac8a69c 100644 --- a/components/bookmarks/core/browser/bookmark_storage.h +++ b/components/bookmarks/browser/bookmark_storage.h @@ -2,14 +2,14 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_STORAGE_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_STORAGE_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_STORAGE_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_STORAGE_H_ #include "base/files/file_path.h" #include "base/files/important_file_writer.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" -#include "components/bookmarks/core/browser/bookmark_node.h" +#include "components/bookmarks/browser/bookmark_node.h" class BookmarkIndex; class BookmarkModel; @@ -163,4 +163,4 @@ class BookmarkStorage : public base::ImportantFileWriter::DataSerializer, DISALLOW_COPY_AND_ASSIGN(BookmarkStorage); }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_STORAGE_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_STORAGE_H_ diff --git a/components/bookmarks/core/browser/bookmark_utils.cc b/components/bookmarks/browser/bookmark_utils.cc index 8baec23..b687937 100644 --- a/components/bookmarks/core/browser/bookmark_utils.cc +++ b/components/bookmarks/browser/bookmark_utils.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include <utility> @@ -14,9 +14,9 @@ #include "base/prefs/pref_service.h" #include "base/strings/utf_string_conversions.h" #include "base/time/time.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/scoped_group_bookmark_actions.h" -#include "components/bookmarks/core/common/bookmark_pref_names.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/scoped_group_bookmark_actions.h" +#include "components/bookmarks/common/bookmark_pref_names.h" #include "components/pref_registry/pref_registry_syncable.h" #include "components/query_parser/query_parser.h" #include "net/base/net_util.h" diff --git a/components/bookmarks/core/browser/bookmark_utils.h b/components/bookmarks/browser/bookmark_utils.h index a094169..c798e17 100644 --- a/components/bookmarks/core/browser/bookmark_utils.h +++ b/components/bookmarks/browser/bookmark_utils.h @@ -2,15 +2,15 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_UTILS_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_UTILS_H_ #include <string> #include <vector> #include "base/strings/string16.h" #include "base/strings/utf_offset_string_conversions.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" +#include "components/bookmarks/browser/bookmark_node_data.h" class BookmarkModel; class BookmarkNode; @@ -141,4 +141,4 @@ base::string16 CleanUpTitleForMatching(const base::string16& title); // Returns the node with |id|, or NULL if there is no node with |id|. const BookmarkNode* GetBookmarkNodeByID(const BookmarkModel* model, int64 id); -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_UTILS_H_ diff --git a/components/bookmarks/core/browser/bookmark_utils_unittest.cc b/components/bookmarks/browser/bookmark_utils_unittest.cc index d090f36..724d234 100644 --- a/components/bookmarks/core/browser/bookmark_utils_unittest.cc +++ b/components/bookmarks/browser/bookmark_utils_unittest.cc @@ -1,17 +1,17 @@ -// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/bookmark_utils.h" +#include "components/bookmarks/browser/bookmark_utils.h" #include <vector> #include "base/message_loop/message_loop.h" #include "base/strings/utf_string_conversions.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node_data.h" -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node_data.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/base/clipboard/clipboard.h" #include "ui/base/clipboard/scoped_clipboard_writer.h" diff --git a/components/bookmarks/core/browser/scoped_group_bookmark_actions.cc b/components/bookmarks/browser/scoped_group_bookmark_actions.cc index 38d779c..b928eba 100644 --- a/components/bookmarks/core/browser/scoped_group_bookmark_actions.cc +++ b/components/bookmarks/browser/scoped_group_bookmark_actions.cc @@ -2,9 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/browser/scoped_group_bookmark_actions.h" +#include "components/bookmarks/browser/scoped_group_bookmark_actions.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_model.h" ScopedGroupBookmarkActions::ScopedGroupBookmarkActions(BookmarkModel* model) : model_(model) { diff --git a/components/bookmarks/core/browser/scoped_group_bookmark_actions.h b/components/bookmarks/browser/scoped_group_bookmark_actions.h index e3b317b..5a751d1 100644 --- a/components/bookmarks/core/browser/scoped_group_bookmark_actions.h +++ b/components/bookmarks/browser/scoped_group_bookmark_actions.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_SCOPED_GROUP_BOOKMARK_ACTIONS_H_ -#define COMPONENTS_BOOKMARKS_CORE_BROWSER_SCOPED_GROUP_BOOKMARK_ACTIONS_H_ +#ifndef COMPONENTS_BOOKMARKS_BROWSER_SCOPED_GROUP_BOOKMARK_ACTIONS_H_ +#define COMPONENTS_BOOKMARKS_BROWSER_SCOPED_GROUP_BOOKMARK_ACTIONS_H_ #include "base/macros.h" @@ -21,4 +21,4 @@ class ScopedGroupBookmarkActions { DISALLOW_COPY_AND_ASSIGN(ScopedGroupBookmarkActions); }; -#endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_SCOPED_GROUP_BOOKMARK_ACTIONS_H_ +#endif // COMPONENTS_BOOKMARKS_BROWSER_SCOPED_GROUP_BOOKMARK_ACTIONS_H_ diff --git a/components/bookmarks/core/common/bookmark_constants.cc b/components/bookmarks/common/bookmark_constants.cc index 7e64463..6c2e5a6 100644 --- a/components/bookmarks/core/common/bookmark_constants.cc +++ b/components/bookmarks/common/bookmark_constants.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/common/bookmark_constants.h" +#include "components/bookmarks/common/bookmark_constants.h" #define FPL FILE_PATH_LITERAL diff --git a/components/bookmarks/core/common/bookmark_constants.h b/components/bookmarks/common/bookmark_constants.h index bfd0205..7b1a8f5 100644 --- a/components/bookmarks/core/common/bookmark_constants.h +++ b/components/bookmarks/common/bookmark_constants.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_COMMON_BOOKMARK_CONSTANTS_H_ -#define COMPONENTS_BOOKMARKS_CORE_COMMON_BOOKMARK_CONSTANTS_H_ +#ifndef COMPONENTS_BOOKMARKS_COMMON_BOOKMARK_CONSTANTS_H_ +#define COMPONENTS_BOOKMARKS_COMMON_BOOKMARK_CONSTANTS_H_ #include "base/files/file_path.h" @@ -13,4 +13,4 @@ extern const base::FilePath::CharType kBookmarksFileName[]; } // namespace bookmarks -#endif // COMPONENTS_BOOKMARKS_CORE_COMMON_BOOKMARK_CONSTANTS_H_ +#endif // COMPONENTS_BOOKMARKS_COMMON_BOOKMARK_CONSTANTS_H_ diff --git a/components/bookmarks/core/common/bookmark_pref_names.cc b/components/bookmarks/common/bookmark_pref_names.cc index a3b8089..fc64aa1 100644 --- a/components/bookmarks/core/common/bookmark_pref_names.cc +++ b/components/bookmarks/common/bookmark_pref_names.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/common/bookmark_pref_names.h" +#include "components/bookmarks/common/bookmark_pref_names.h" namespace prefs { diff --git a/components/bookmarks/core/common/bookmark_pref_names.h b/components/bookmarks/common/bookmark_pref_names.h index 4fc47d0..3cc3280 100644 --- a/components/bookmarks/core/common/bookmark_pref_names.h +++ b/components/bookmarks/common/bookmark_pref_names.h @@ -4,8 +4,8 @@ // Constants for the names of various bookmarks preferences. -#ifndef COMPONENTS_BOOKMARKS_CORE_COMMON_BOOKMARK_PREF_NAMES_H_ -#define COMPONENTS_BOOKMARKS_CORE_COMMON_BOOKMARK_PREF_NAMES_H_ +#ifndef COMPONENTS_BOOKMARKS_COMMON_BOOKMARK_PREF_NAMES_H_ +#define COMPONENTS_BOOKMARKS_COMMON_BOOKMARK_PREF_NAMES_H_ namespace prefs { @@ -16,4 +16,4 @@ extern const char kShowAppsShortcutInBookmarkBar[]; } // namespace prefs -#endif // COMPONENTS_BOOKMARKS_CORE_COMMON_BOOKMARK_PREF_NAMES_H_ +#endif // COMPONENTS_BOOKMARKS_COMMON_BOOKMARK_PREF_NAMES_H_ diff --git a/components/bookmarks/core/test/bookmark_test_helpers.cc b/components/bookmarks/test/bookmark_test_helpers.cc index 86d9ee2..ce7fbe8 100644 --- a/components/bookmarks/core/test/bookmark_test_helpers.cc +++ b/components/bookmarks/test/bookmark_test_helpers.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/test/bookmark_test_helpers.h" +#include "components/bookmarks/test/bookmark_test_helpers.h" #include "base/basictypes.h" #include "base/callback.h" @@ -10,8 +10,8 @@ #include "base/logging.h" #include "base/run_loop.h" #include "base/strings/utf_string_conversions.h" -#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" -#include "components/bookmarks/core/browser/bookmark_model.h" +#include "components/bookmarks/browser/base_bookmark_model_observer.h" +#include "components/bookmarks/browser/bookmark_model.h" #include "url/gurl.h" namespace { diff --git a/components/bookmarks/core/test/bookmark_test_helpers.h b/components/bookmarks/test/bookmark_test_helpers.h index a6467fa..cd107dd 100644 --- a/components/bookmarks/core/test/bookmark_test_helpers.h +++ b/components/bookmarks/test/bookmark_test_helpers.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_TEST_BOOKMARK_TEST_HELPERS_H_ -#define COMPONENTS_BOOKMARKS_CORE_TEST_BOOKMARK_TEST_HELPERS_H_ +#ifndef COMPONENTS_BOOKMARKS_TEST_BOOKMARK_TEST_HELPERS_H_ +#define COMPONENTS_BOOKMARKS_TEST_BOOKMARK_TEST_HELPERS_H_ #include <string> @@ -42,4 +42,4 @@ void AddNodesFromModelString(BookmarkModel* model, const std::string& model_string); } // namespace test -#endif // COMPONENTS_BOOKMARKS_CORE_TEST_BOOKMARK_TEST_HELPERS_H_ +#endif // COMPONENTS_BOOKMARKS_TEST_BOOKMARK_TEST_HELPERS_H_ diff --git a/components/bookmarks/core/test/test_bookmark_client.cc b/components/bookmarks/test/test_bookmark_client.cc index 6c98398..6151032 100644 --- a/components/bookmarks/core/test/test_bookmark_client.cc +++ b/components/bookmarks/test/test_bookmark_client.cc @@ -2,12 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "components/bookmarks/core/test/test_bookmark_client.h" +#include "components/bookmarks/test/test_bookmark_client.h" #include "base/logging.h" -#include "components/bookmarks/core/browser/bookmark_model.h" -#include "components/bookmarks/core/browser/bookmark_node.h" -#include "components/bookmarks/core/browser/bookmark_storage.h" +#include "components/bookmarks/browser/bookmark_model.h" +#include "components/bookmarks/browser/bookmark_node.h" +#include "components/bookmarks/browser/bookmark_storage.h" namespace test { diff --git a/components/bookmarks/core/test/test_bookmark_client.h b/components/bookmarks/test/test_bookmark_client.h index 7115ffd..1330728 100644 --- a/components/bookmarks/core/test/test_bookmark_client.h +++ b/components/bookmarks/test/test_bookmark_client.h @@ -2,11 +2,11 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef COMPONENTS_BOOKMARKS_CORE_TEST_TEST_BOOKMARK_CLIENT_H_ -#define COMPONENTS_BOOKMARKS_CORE_TEST_TEST_BOOKMARK_CLIENT_H_ +#ifndef COMPONENTS_BOOKMARKS_TEST_TEST_BOOKMARK_CLIENT_H_ +#define COMPONENTS_BOOKMARKS_TEST_TEST_BOOKMARK_CLIENT_H_ #include "base/memory/scoped_ptr.h" -#include "components/bookmarks/core/browser/bookmark_client.h" +#include "components/bookmarks/browser/bookmark_client.h" class BookmarkModel; @@ -31,4 +31,4 @@ class TestBookmarkClient : public BookmarkClient { } // namespace test -#endif // COMPONENTS_BOOKMARKS_CORE_TEST_TEST_BOOKMARK_CLIENT_H_ +#endif // COMPONENTS_BOOKMARKS_TEST_TEST_BOOKMARK_CLIENT_H_ diff --git a/components/components_tests.gyp b/components/components_tests.gyp index e13fbc0..6f2e098 100644 --- a/components/components_tests.gyp +++ b/components/components_tests.gyp @@ -63,11 +63,11 @@ 'autofill/core/common/form_field_data_unittest.cc', 'autofill/core/common/password_form_fill_data_unittest.cc', 'autofill/core/common/save_password_progress_logger_unittest.cc', - 'bookmarks/core/browser/bookmark_codec_unittest.cc', - 'bookmarks/core/browser/bookmark_expanded_state_tracker_unittest.cc', - 'bookmarks/core/browser/bookmark_index_unittest.cc', - 'bookmarks/core/browser/bookmark_model_unittest.cc', - 'bookmarks/core/browser/bookmark_utils_unittest.cc', + 'bookmarks/browser/bookmark_codec_unittest.cc', + 'bookmarks/browser/bookmark_expanded_state_tracker_unittest.cc', + 'bookmarks/browser/bookmark_index_unittest.cc', + 'bookmarks/browser/bookmark_model_unittest.cc', + 'bookmarks/browser/bookmark_utils_unittest.cc', 'captive_portal/captive_portal_detector_unittest.cc', 'cloud_devices/common/cloud_devices_urls_unittest.cc', 'cloud_devices/common/printer_description_unittest.cc', @@ -212,8 +212,8 @@ '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', # Dependencies of bookmarks - 'components.gyp:bookmarks_core_browser', - 'components.gyp:bookmarks_core_test_support', + 'components.gyp:bookmarks_browser', + 'components.gyp:bookmarks_test_support', # Dependencies of captive_portal 'components.gyp:captive_portal_test_support', @@ -293,7 +293,7 @@ 'conditions': [ ['toolkit_views == 1', { 'sources': [ - 'bookmarks/core/browser/bookmark_node_data_unittest.cc', + 'bookmarks/browser/bookmark_node_data_unittest.cc', ], }], ['OS != "ios"', { diff --git a/components/enhanced_bookmarks/DEPS b/components/enhanced_bookmarks/DEPS index c37b153..34abc99 100644 --- a/components/enhanced_bookmarks/DEPS +++ b/components/enhanced_bookmarks/DEPS @@ -1,5 +1,5 @@ include_rules = [ - "+components/bookmarks/core", + "+components/bookmarks", "+sql", "+ui", ] |