Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_COMMON_NACL_DEBUG_EXCEPTION_HANDLER_WIN_H_ | |
| 6 #define CHROME_COMMON_NACL_DEBUG_EXCEPTION_HANDLER_WIN_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include "base/callback.h" | |
| 10 #include "base/message_loop.h" | |
| 11 | |
| 12 void NaClStartDebugExceptionHandlerThread(int32 nacl_process_id, | |
| 13 base::MessageLoopProxy* message_loop, | |
| 14 base::Closure& on_connected); | |
|
brettw
2012/04/24 23:00:15
Pass this as const ref.
Mark Seaborn
2012/04/24 23:17:35
Done.
| |
| 15 | |
| 16 #endif // CHROME_COMMON_NACL_DEBUG_EXCEPTION_HANDLER_WIN_H_ | |
| OLD | NEW |