Skip to content

Commit

Permalink
[windows] Include-what-you-use fixes in http_upload.{cc,h}
Browse files Browse the repository at this point in the history
Bug: b/353869880
Change-Id: I7dd2d432032099c77410ce67a0fce6c7a71b473f
Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/5720428
Reviewed-by: Ivan Penkov <[email protected]>
  • Loading branch information
GregTho authored and Ivan Penkov committed Jul 19, 2024
1 parent 0c9811d commit 8181954
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/common/windows/http_upload.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
#endif

#include <algorithm>
#include <map>
#include <memory>
#include <string>

#include <assert.h>
#include <stdint.h>
Expand All @@ -53,7 +56,6 @@ namespace {
using std::string;
using std::wstring;
using std::map;
using std::ios;
using std::unique_ptr;

// Compresses the contents of `data` into `deflated` using the deflate
Expand Down
1 change: 1 addition & 0 deletions src/common/windows/http_upload.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
#include <wininet.h>

#include <map>
#include <string>

namespace google_breakpad {

Expand Down

0 comments on commit 8181954

Please sign in to comment.