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

Unified Diff: third_party/WebKit/Source/core/inspector/v8/InspectorWrapper.h

Issue 1618003003: DevTools: clean up V8Debugger.h API, remove parts accessed only from within inspector/v8. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/core/inspector/v8/InspectorWrapper.h
diff --git a/third_party/WebKit/Source/core/inspector/v8/InspectorWrapper.h b/third_party/WebKit/Source/core/inspector/v8/InspectorWrapper.h
index 870d954d7f3ac461da928d3181f59b551fa04a88..985c743a60dda3f39ce4f583d9c800cee912cc87 100644
--- a/third_party/WebKit/Source/core/inspector/v8/InspectorWrapper.h
+++ b/third_party/WebKit/Source/core/inspector/v8/InspectorWrapper.h
@@ -46,8 +46,8 @@ public:
template<typename T>
class InspectorWrapperTypeTrait<T, true> {
public:
- using PassType = PassRefPtrWillBeRawPtr<T>;
- using Type = RefPtrWillBeRawPtr<T>;
+ using PassType = PassRefPtr<T>;
+ using Type = RefPtr<T>;
};
template<class T, char* const hiddenPropertyName, char* const className>

Powered by Google App Engine
This is Rietveld 408576698