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

Unified Diff: third_party/WebKit/Source/modules/websockets/WebSocketChannel.cpp

Issue 1601283003: DevTools: deoilpanize inspector/v8 and related classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed. Created 4 years, 11 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
Index: third_party/WebKit/Source/modules/websockets/WebSocketChannel.cpp
diff --git a/third_party/WebKit/Source/modules/websockets/WebSocketChannel.cpp b/third_party/WebKit/Source/modules/websockets/WebSocketChannel.cpp
index bdd58bd1dc5acd833a294e33fb23cd53736683ef..dc7c908ab59c16ac56bf5786c5bf038b870eb43d 100644
--- a/third_party/WebKit/Source/modules/websockets/WebSocketChannel.cpp
+++ b/third_party/WebKit/Source/modules/websockets/WebSocketChannel.cpp
@@ -49,7 +49,7 @@ WebSocketChannel* WebSocketChannel::create(ExecutionContext* context, WebSocketC
String sourceURL;
unsigned lineNumber = 0;
- RefPtrWillBeRawPtr<ScriptCallStack> callStack = currentScriptCallStack(1);
+ RefPtr<ScriptCallStack> callStack = currentScriptCallStack(1);
if (callStack && callStack->size()) {
sourceURL = callStack->at(0).sourceURL();
lineNumber = callStack->at(0).lineNumber();

Powered by Google App Engine
This is Rietveld 408576698