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

Unified Diff: client/registration_protocol_win.h

Issue 1301853002: win: Crash handler server (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: oops Created 5 years, 3 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 | « client/crashpad_client_win.cc ('k') | crashpad.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/registration_protocol_win.h
diff --git a/client/registration_protocol_win.h b/client/registration_protocol_win.h
deleted file mode 100644
index 68eaa76c3c51adda1c7a3d2f52169b8b78a2a5da..0000000000000000000000000000000000000000
--- a/client/registration_protocol_win.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright 2015 The Crashpad Authors. All rights reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef CRASHPAD_CLIENT_REGISTRATION_PROTOCOL_WIN_H_
-#define CRASHPAD_CLIENT_REGISTRATION_PROTOCOL_WIN_H_
-
-#include <windows.h>
-#include <stdint.h>
-
-#include "util/win/address_types.h"
-
-namespace crashpad {
-
-#pragma pack(push, 1)
-//! \brief A client registration request.
-struct RegistrationRequest {
- //! \brief The PID of the client process.
- DWORD client_process_id;
- //! \brief The address, in the client process address space, of a CrashpadInfo
- //! structure.
- crashpad::WinVMAddress crashpad_info_address;
-};
-#pragma pack(pop)
-
-#pragma pack(push, 1)
-//! \brief A client registration response.
-//!
-//! See <a
-//! href="https://msdn.microsoft.com/en-us/library/windows/desktop/aa384203">Interprocess
-//! Communication Between 32-bit and 64-bit Applications</a> for details on
-//! communicating handle values between processes of varying bitness.
-struct RegistrationResponse {
- //! \brief An event `HANDLE`, valid in the client process, that should be
- //! signaled to request a crash report. 64-bit clients should convert the
- //! value to a `HANDLE` using sign-extension.
- uint32_t request_report_event;
- //! \brief An event `HANDLE`, valid in the client process, that will be
- //! signaled when the requested crash report is complete. 64-bit clients
- //! should convert the value to a `HANDLE` using sign-extension.
- uint32_t report_complete_event;
-};
-#pragma pack(pop)
-
-} // namespace crashpad
-
-#endif // CRASHPAD_CLIENT_REGISTRATION_PROTOCOL_WIN_H_
« no previous file with comments | « client/crashpad_client_win.cc ('k') | crashpad.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698