| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "components/update_client/background_downloader_win.h" | 5 #include "components/update_client/background_downloader_win.h" |
| 6 | 6 |
| 7 #include <atlbase.h> | 7 #include <atlbase.h> |
| 8 #include <atlcom.h> | 8 #include <atlcom.h> |
| 9 #include <stddef.h> |
| 9 | 10 |
| 10 #include <stdint.h> | 11 #include <stdint.h> |
| 11 #include <functional> | 12 #include <functional> |
| 12 #include <iomanip> | 13 #include <iomanip> |
| 13 #include <limits> | 14 #include <limits> |
| 14 #include <vector> | 15 #include <vector> |
| 15 | 16 |
| 16 #include "base/bind.h" | 17 #include "base/bind.h" |
| 17 #include "base/bind_helpers.h" | 18 #include "base/bind_helpers.h" |
| 18 #include "base/files/file_util.h" | 19 #include "base/files/file_util.h" |
| (...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 870 | 871 |
| 871 for (auto cookie : cookies) { | 872 for (auto cookie : cookies) { |
| 872 hr = git->RevokeInterfaceFromGlobal(cookie); | 873 hr = git->RevokeInterfaceFromGlobal(cookie); |
| 873 DCHECK(SUCCEEDED(hr)); | 874 DCHECK(SUCCEEDED(hr)); |
| 874 } | 875 } |
| 875 | 876 |
| 876 return S_OK; | 877 return S_OK; |
| 877 } | 878 } |
| 878 | 879 |
| 879 } // namespace update_client | 880 } // namespace update_client |
| OLD | NEW |