| 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/safe_browsing/protocol_manager.h" | 5 #include "chrome/browser/safe_browsing/protocol_manager.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/environment.h" | 9 #include "base/environment.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ptr_util.h" | 12 #include "base/memory/ptr_util.h" |
| 13 #include "base/metrics/histogram_macros.h" | 13 #include "base/metrics/histogram_macros.h" |
| 14 #include "base/metrics/sparse_histogram.h" | 14 #include "base/metrics/sparse_histogram.h" |
| 15 #include "base/profiler/scoped_tracker.h" | 15 #include "base/profiler/scoped_tracker.h" |
| 16 #include "base/rand_util.h" | 16 #include "base/rand_util.h" |
| 17 #include "base/strings/string_number_conversions.h" | 17 #include "base/strings/string_number_conversions.h" |
| 18 #include "base/strings/string_util.h" | 18 #include "base/strings/string_util.h" |
| 19 #include "base/strings/stringprintf.h" | |
| 20 #include "base/timer/timer.h" | 19 #include "base/timer/timer.h" |
| 21 #include "chrome/browser/safe_browsing/protocol_parser.h" | 20 #include "chrome/browser/safe_browsing/protocol_parser.h" |
| 22 #include "chrome/common/env_vars.h" | 21 #include "chrome/common/env_vars.h" |
| 23 #include "components/data_use_measurement/core/data_use_user_data.h" | 22 #include "components/data_use_measurement/core/data_use_user_data.h" |
| 24 #include "components/safe_browsing_db/util.h" | 23 #include "components/safe_browsing_db/util.h" |
| 25 #include "components/variations/variations_associated_data.h" | 24 #include "components/variations/variations_associated_data.h" |
| 26 #include "content/public/browser/browser_thread.h" | 25 #include "content/public/browser/browser_thread.h" |
| 27 #include "google_apis/google_api_keys.h" | 26 #include "google_apis/google_api_keys.h" |
| 28 #include "net/base/escape.h" | 27 #include "net/base/escape.h" |
| 29 #include "net/base/load_flags.h" | 28 #include "net/base/load_flags.h" |
| (...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 : callback(callback), is_download(is_download) {} | 798 : callback(callback), is_download(is_download) {} |
| 800 | 799 |
| 801 SafeBrowsingProtocolManager::FullHashDetails::FullHashDetails( | 800 SafeBrowsingProtocolManager::FullHashDetails::FullHashDetails( |
| 802 const FullHashDetails& other) = default; | 801 const FullHashDetails& other) = default; |
| 803 | 802 |
| 804 SafeBrowsingProtocolManager::FullHashDetails::~FullHashDetails() {} | 803 SafeBrowsingProtocolManager::FullHashDetails::~FullHashDetails() {} |
| 805 | 804 |
| 806 SafeBrowsingProtocolManagerDelegate::~SafeBrowsingProtocolManagerDelegate() {} | 805 SafeBrowsingProtocolManagerDelegate::~SafeBrowsingProtocolManagerDelegate() {} |
| 807 | 806 |
| 808 } // namespace safe_browsing | 807 } // namespace safe_browsing |
| OLD | NEW |