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

Unified Diff: components/nacl/common/nacl_debug_exception_handler_win.h

Issue 750263002: Fix implicit conversion of scoped_refptr<T> to T* in components/nacl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 | « no previous file | components/nacl/common/nacl_debug_exception_handler_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/common/nacl_debug_exception_handler_win.h
diff --git a/components/nacl/common/nacl_debug_exception_handler_win.h b/components/nacl/common/nacl_debug_exception_handler_win.h
index 42beefe8514bd0ecf8f40ad1d78c1617863f4cd9..5c49d30206f3e71fbe956a2e9ba74c3941f0b1b9 100644
--- a/components/nacl/common/nacl_debug_exception_handler_win.h
+++ b/components/nacl/common/nacl_debug_exception_handler_win.h
@@ -6,13 +6,14 @@
#define COMPONENTS_NACL_COMMON_NACL_DEBUG_EXCEPTION_HANDLER_WIN_H_
#include "base/callback.h"
+#include "base/memory/ref_counted.h"
#include "base/message_loop/message_loop.h"
#include "base/process/process.h"
void NaClStartDebugExceptionHandlerThread(
base::ProcessHandle nacl_process,
const std::string& startup_info,
- base::MessageLoopProxy* message_loop,
+ const scoped_refptr<base::MessageLoopProxy>& message_loop,
const base::Callback<void(bool)>& on_connected);
#endif // COMPONENTS_NACL_COMMON_NACL_DEBUG_EXCEPTION_HANDLER_WIN_H_
« no previous file with comments | « no previous file | components/nacl/common/nacl_debug_exception_handler_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698