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

Unified Diff: snapshot/win/process_reader_win.cc

Issue 983103004: win: fixes for Windows x64 (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: mac Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « snapshot/win/process_reader_win.h ('k') | util/net/http_multipart_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: snapshot/win/process_reader_win.cc
diff --git a/snapshot/win/process_reader_win.cc b/snapshot/win/process_reader_win.cc
index 77fe0e242d1ef5dbd6284d16013343b8e0863f58..383a66464a113334dd593e004d0d733da4b543a4 100644
--- a/snapshot/win/process_reader_win.cc
+++ b/snapshot/win/process_reader_win.cc
@@ -16,9 +16,7 @@
namespace crashpad {
-ProcessReaderWin::ProcessReaderWin()
- : initialized_(),
- is_64_bit_(false) {
+ProcessReaderWin::ProcessReaderWin() : process_info_(), initialized_() {
}
ProcessReaderWin::~ProcessReaderWin() {
@@ -27,6 +25,8 @@ ProcessReaderWin::~ProcessReaderWin() {
bool ProcessReaderWin::Initialize(HANDLE process) {
INITIALIZATION_STATE_SET_INITIALIZING(initialized_);
+ process_info_.Initialize(process);
+
INITIALIZATION_STATE_SET_VALID(initialized_);
return true;
}
« no previous file with comments | « snapshot/win/process_reader_win.h ('k') | util/net/http_multipart_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698