Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(515)

Side by Side Diff: components/update_client/background_downloader_win.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « components/update_client/action_update_check.cc ('k') | components/update_client/component_unpacker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698