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

Unified Diff: chrome/browser/debugger/devtools_http_protocol_handler.cc

Issue 3881003: Revert 63081 (breaks devtools) - Use scoped_refptr for refcounted parameters ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/debugger/devtools_http_protocol_handler.cc
===================================================================
--- chrome/browser/debugger/devtools_http_protocol_handler.cc (revision 63242)
+++ chrome/browser/debugger/devtools_http_protocol_handler.cc (working copy)
@@ -95,7 +95,7 @@
FROM_HERE,
NewRunnableMethod(this,
&DevToolsHttpProtocolHandler::OnHttpRequestUI,
- make_scoped_refptr(socket),
+ socket,
info));
return;
}
@@ -123,7 +123,7 @@
NewRunnableMethod(
this,
&DevToolsHttpProtocolHandler::OnWebSocketRequestUI,
- make_scoped_refptr(socket),
+ socket,
request));
}
@@ -135,7 +135,7 @@
NewRunnableMethod(
this,
&DevToolsHttpProtocolHandler::OnWebSocketMessageUI,
- make_scoped_refptr(socket),
+ socket,
data));
}
@@ -160,7 +160,7 @@
NewRunnableMethod(
this,
&DevToolsHttpProtocolHandler::OnCloseUI,
- make_scoped_refptr(socket)));
+ socket));
}
void DevToolsHttpProtocolHandler::OnHttpRequestUI(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698