Chromium Code Reviews| Index: client/registration_request_win.h |
| diff --git a/test/paths_win.cc b/client/registration_request_win.h |
| similarity index 72% |
| copy from test/paths_win.cc |
| copy to client/registration_request_win.h |
| index 95d0264ed82ab36cf0e541315528d44585f4bbb8..faa09d6338cb777507b122af531ddc54268def96 100644 |
| --- a/test/paths_win.cc |
| +++ b/client/registration_request_win.h |
| @@ -12,19 +12,18 @@ |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| -#include "test/paths.h" |
| +#ifndef CRASHPAD_CLIENT_REGISTRATION_REQUEST_WIN_H_ |
| +#define CRASHPAD_CLIENT_REGISTRATION_REQUEST_WIN_H_ |
| #include <windows.h> |
| namespace crashpad { |
| -namespace test { |
| -// static |
| -base::FilePath Paths::Executable() { |
| - wchar_t executable_path[_MAX_PATH]; |
| - GetModuleFileName(nullptr, executable_path, sizeof(executable_path)); |
| - return base::FilePath(executable_path); |
| -} |
| +struct RegistrationRequest { |
|
Mark Mentovai
2015/05/05 20:20:32
Ideally, everything in namespace crashpad has Doxy
|
| + DWORD client_process_id; |
| + size_t crashpad_info_address; |
|
Mark Mentovai
2015/05/05 20:20:33
This may pose a problem for future cross-bitted op
|
| +}; |
| -} // namespace test |
| } // namespace crashpad |
| + |
| +#endif // CRASHPAD_CLIENT_REGISTRATION_REQUEST_WIN_H_ |