| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/browsing_data/browsing_data_remover_impl.h" | 5 #include "chrome/browser/browsing_data/browsing_data_remover_impl.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "components/prefs/pref_service.h" | 25 #include "components/prefs/pref_service.h" |
| 26 #include "components/web_cache/browser/web_cache_manager.h" | 26 #include "components/web_cache/browser/web_cache_manager.h" |
| 27 #include "content/public/browser/browser_context.h" | 27 #include "content/public/browser/browser_context.h" |
| 28 #include "content/public/browser/browser_thread.h" | 28 #include "content/public/browser/browser_thread.h" |
| 29 #include "content/public/browser/content_browser_client.h" | 29 #include "content/public/browser/content_browser_client.h" |
| 30 #include "content/public/browser/download_manager.h" | 30 #include "content/public/browser/download_manager.h" |
| 31 #include "content/public/browser/notification_service.h" | 31 #include "content/public/browser/notification_service.h" |
| 32 #include "content/public/browser/plugin_data_remover.h" | 32 #include "content/public/browser/plugin_data_remover.h" |
| 33 #include "content/public/browser/storage_partition.h" | 33 #include "content/public/browser/storage_partition.h" |
| 34 #include "content/public/browser/user_metrics.h" | 34 #include "content/public/browser/user_metrics.h" |
| 35 #include "extensions/features/features.h" | |
| 36 #include "media/media_features.h" | |
| 37 #include "net/base/net_errors.h" | 35 #include "net/base/net_errors.h" |
| 38 #include "net/cookies/cookie_store.h" | 36 #include "net/cookies/cookie_store.h" |
| 39 #include "net/http/http_network_session.h" | 37 #include "net/http/http_network_session.h" |
| 40 #include "net/http/http_transaction_factory.h" | 38 #include "net/http/http_transaction_factory.h" |
| 41 #include "net/http/transport_security_state.h" | 39 #include "net/http/transport_security_state.h" |
| 42 #include "net/ssl/channel_id_service.h" | 40 #include "net/ssl/channel_id_service.h" |
| 43 #include "net/ssl/channel_id_store.h" | 41 #include "net/ssl/channel_id_store.h" |
| 44 #include "net/url_request/url_request_context.h" | 42 #include "net/url_request/url_request_context.h" |
| 45 #include "net/url_request/url_request_context_getter.h" | 43 #include "net/url_request/url_request_context_getter.h" |
| 46 #include "ppapi/features/features.h" | 44 #include "ppapi/features/features.h" |
| (...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 } | 744 } |
| 747 | 745 |
| 748 NotifyIfDone(); | 746 NotifyIfDone(); |
| 749 } | 747 } |
| 750 | 748 |
| 751 void BrowsingDataRemoverImpl::OnFlashDataDeleted() { | 749 void BrowsingDataRemoverImpl::OnFlashDataDeleted() { |
| 752 clear_plugin_data_count_--; | 750 clear_plugin_data_count_--; |
| 753 NotifyIfDone(); | 751 NotifyIfDone(); |
| 754 } | 752 } |
| 755 #endif | 753 #endif |
| OLD | NEW |