aboutsummaryrefslogtreecommitdiff
path: root/src/client/windows/crash_generation/client_info.h
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-07-25 15:34:00 +0000
committermark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-07-25 15:34:00 +0000
commitc5782715455a9bd7d9d03d5d9a429e4228b7f090 (patch)
tree7105d294d634c24509c16185e1991b27f50d6d8b /src/client/windows/crash_generation/client_info.h
parentSpeculatively back out r989 per http://codereview.chromium.org/10805065/ : (diff)
downloadbreakpad-c5782715455a9bd7d9d03d5d9a429e4228b7f090.tar.xz
Speculatively back out r984. See http://codereview.chromium.org/10805065/
and http://build.chromium.org/p/chromium/builders/NACL%20Tests%20%28x64%29/builds/34563 chrome src/native_client/tests/inbrowser_crash_test/crash_dump_tester.py says that the observed failures are a symptom of crash_service.exe itself crashing. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@999 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/windows/crash_generation/client_info.h')
-rw-r--r--src/client/windows/crash_generation/client_info.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/client/windows/crash_generation/client_info.h b/src/client/windows/crash_generation/client_info.h
index 3d88ffd4..999e6678 100644
--- a/src/client/windows/crash_generation/client_info.h
+++ b/src/client/windows/crash_generation/client_info.h
@@ -61,7 +61,6 @@ class ClientInfo {
MINIDUMP_TYPE dump_type() const { return dump_type_; }
EXCEPTION_POINTERS** ex_info() const { return ex_info_; }
MDRawAssertionInfo* assert_info() const { return assert_info_; }
- CustomDataStream* custom_data_stream() const { return custom_data_stream_; }
DWORD* thread_id() const { return thread_id_; }
HANDLE process_handle() const { return process_handle_; }
HANDLE dump_requested_handle() const { return dump_requested_handle_; }
@@ -91,10 +90,6 @@ class ClientInfo {
bool GetClientExceptionInfo(EXCEPTION_POINTERS** ex_info) const;
bool GetClientThreadId(DWORD* thread_id) const;
- // Reads the custom data stream (if supplied) from the client process
- // address space.
- bool PopulateCustomDataStream();
-
// Reads the custom information from the client process address space.
bool PopulateCustomInfo();
@@ -135,9 +130,6 @@ class ClientInfo {
// Custom information about the client.
CustomClientInfo custom_client_info_;
- // Custom data stream supplied by the client.
- CustomDataStream* custom_data_stream_;
-
// Contains the custom client info entries read from the client process
// memory. This will be populated only if the method GetClientCustomInfo
// is called.