| 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" |
| (...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 } | 793 } |
| 794 | 794 |
| 795 SafeBrowsingProtocolManager::FullHashDetails::FullHashDetails() | 795 SafeBrowsingProtocolManager::FullHashDetails::FullHashDetails() |
| 796 : callback(), is_download(false) {} | 796 : callback(), is_download(false) {} |
| 797 | 797 |
| 798 SafeBrowsingProtocolManager::FullHashDetails::FullHashDetails( | 798 SafeBrowsingProtocolManager::FullHashDetails::FullHashDetails( |
| 799 FullHashCallback callback, | 799 FullHashCallback callback, |
| 800 bool is_download) | 800 bool is_download) |
| 801 : callback(callback), is_download(is_download) {} | 801 : callback(callback), is_download(is_download) {} |
| 802 | 802 |
| 803 SafeBrowsingProtocolManager::FullHashDetails::FullHashDetails( |
| 804 const FullHashDetails& other) = default; |
| 805 |
| 803 SafeBrowsingProtocolManager::FullHashDetails::~FullHashDetails() {} | 806 SafeBrowsingProtocolManager::FullHashDetails::~FullHashDetails() {} |
| 804 | 807 |
| 805 SafeBrowsingProtocolManagerDelegate::~SafeBrowsingProtocolManagerDelegate() {} | 808 SafeBrowsingProtocolManagerDelegate::~SafeBrowsingProtocolManagerDelegate() {} |
| 806 | 809 |
| 807 } // namespace safe_browsing | 810 } // namespace safe_browsing |
| OLD | NEW |