| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ios/chrome/browser/ui/webui/history/browsing_history_handler.h" | 5 #include "ios/chrome/browser/ui/webui/history/browsing_history_handler.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "components/bookmarks/browser/bookmark_model.h" | 21 #include "components/bookmarks/browser/bookmark_model.h" |
| 22 #include "components/bookmarks/browser/bookmark_utils.h" | 22 #include "components/bookmarks/browser/bookmark_utils.h" |
| 23 #include "components/browser_sync/browser/profile_sync_service.h" | 23 #include "components/browser_sync/browser/profile_sync_service.h" |
| 24 #include "components/browsing_data_ui/history_notice_utils.h" | 24 #include "components/browsing_data_ui/history_notice_utils.h" |
| 25 #include "components/history/core/browser/history_service.h" | 25 #include "components/history/core/browser/history_service.h" |
| 26 #include "components/history/core/browser/history_types.h" | 26 #include "components/history/core/browser/history_types.h" |
| 27 #include "components/history/core/browser/top_sites.h" | 27 #include "components/history/core/browser/top_sites.h" |
| 28 #include "components/history/core/browser/web_history_service.h" | 28 #include "components/history/core/browser/web_history_service.h" |
| 29 #include "components/keyed_service/core/service_access_type.h" | 29 #include "components/keyed_service/core/service_access_type.h" |
| 30 #include "components/strings/grit/components_strings.h" | 30 #include "components/strings/grit/components_strings.h" |
| 31 #include "components/sync/driver/device_info.h" |
| 32 #include "components/sync/driver/device_info_tracker.h" |
| 31 #include "components/sync/protocol/history_delete_directive_specifics.pb.h" | 33 #include "components/sync/protocol/history_delete_directive_specifics.pb.h" |
| 32 #include "components/sync/protocol/sync_enums.pb.h" | 34 #include "components/sync/protocol/sync_enums.pb.h" |
| 33 #include "components/sync_driver/device_info.h" | |
| 34 #include "components/sync_driver/device_info_tracker.h" | |
| 35 #include "components/url_formatter/url_formatter.h" | 35 #include "components/url_formatter/url_formatter.h" |
| 36 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" | 36 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" |
| 37 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" | 37 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 38 #include "ios/chrome/browser/chrome_url_constants.h" | 38 #include "ios/chrome/browser/chrome_url_constants.h" |
| 39 #include "ios/chrome/browser/favicon/favicon_service_factory.h" | 39 #include "ios/chrome/browser/favicon/favicon_service_factory.h" |
| 40 #include "ios/chrome/browser/history/history_service_factory.h" | 40 #include "ios/chrome/browser/history/history_service_factory.h" |
| 41 #include "ios/chrome/browser/history/history_utils.h" | 41 #include "ios/chrome/browser/history/history_utils.h" |
| 42 #include "ios/chrome/browser/history/top_sites_factory.h" | 42 #include "ios/chrome/browser/history/top_sites_factory.h" |
| 43 #include "ios/chrome/browser/history/web_history_service_factory.h" | 43 #include "ios/chrome/browser/history/web_history_service_factory.h" |
| 44 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" | 44 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" |
| (...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 851 | 851 |
| 852 void BrowsingHistoryHandler::OnURLsDeleted( | 852 void BrowsingHistoryHandler::OnURLsDeleted( |
| 853 history::HistoryService* history_service, | 853 history::HistoryService* history_service, |
| 854 bool all_history, | 854 bool all_history, |
| 855 bool expired, | 855 bool expired, |
| 856 const history::URLRows& deleted_rows, | 856 const history::URLRows& deleted_rows, |
| 857 const std::set<GURL>& favicon_urls) { | 857 const std::set<GURL>& favicon_urls) { |
| 858 if (all_history || DeletionsDiffer(deleted_rows, urls_to_be_deleted_)) | 858 if (all_history || DeletionsDiffer(deleted_rows, urls_to_be_deleted_)) |
| 859 web_ui()->CallJavascriptFunction("historyDeleted"); | 859 web_ui()->CallJavascriptFunction("historyDeleted"); |
| 860 } | 860 } |
| OLD | NEW |