Chromium Code Reviews| Index: runtime/bin/dbg_connection_win.cc |
| =================================================================== |
| --- runtime/bin/dbg_connection_win.cc (revision 37971) |
| +++ runtime/bin/dbg_connection_win.cc (working copy) |
| @@ -21,7 +21,8 @@ |
| FATAL("Accepting new debugger connection failed.\n"); |
| } |
| ClientSocket* socket = new ClientSocket(client_socket); |
| - DebuggerConnectionHandler::AcceptDbgConnection(reinterpret_cast<int>(socket)); |
| + DebuggerConnectionHandler::AcceptDbgConnection( |
| + reinterpret_cast<intptr_t>(socket)); |
|
Ivan Posva
2014/07/03 05:33:41
The other platform dependent files suffer similar
|
| } |