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

Unified Diff: third_party/WebKit/Source/core/inspector/InjectedScriptManager.h

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/core/inspector/InjectedScriptManager.h
diff --git a/third_party/WebKit/Source/core/inspector/InjectedScriptManager.h b/third_party/WebKit/Source/core/inspector/InjectedScriptManager.h
index d8047743f75e188e1450406599756b09835c5b26..d0f389624d291d121309c9780b2a7005d64650e8 100644
--- a/third_party/WebKit/Source/core/inspector/InjectedScriptManager.h
+++ b/third_party/WebKit/Source/core/inspector/InjectedScriptManager.h
@@ -45,14 +45,13 @@ class InjectedScriptNative;
class RemoteObjectIdBase;
class ScriptValue;
-class CORE_EXPORT InjectedScriptManager : public NoBaseWillBeGarbageCollectedFinalized<InjectedScriptManager> {
+class CORE_EXPORT InjectedScriptManager {
WTF_MAKE_NONCOPYABLE(InjectedScriptManager);
- USING_FAST_MALLOC_WILL_BE_REMOVED(InjectedScriptManager);
+ USING_FAST_MALLOC(InjectedScriptManager);
public:
- static PassOwnPtrWillBeRawPtr<InjectedScriptManager> createForPage();
- static PassOwnPtrWillBeRawPtr<InjectedScriptManager> createForWorker();
+ static PassOwnPtr<InjectedScriptManager> createForPage();
+ static PassOwnPtr<InjectedScriptManager> createForWorker();
~InjectedScriptManager();
- DECLARE_TRACE();
void disconnect();
@@ -81,7 +80,7 @@ private:
typedef HashMap<int, InjectedScript> IdToInjectedScriptMap;
IdToInjectedScriptMap m_idToInjectedScript;
- RefPtrWillBeMember<InjectedScriptHost> m_injectedScriptHost;
+ RefPtr<InjectedScriptHost> m_injectedScriptHost;
InspectedStateAccessCheck m_inspectedStateAccessCheck;
bool m_customObjectFormatterEnabled;
};

Powered by Google App Engine
This is Rietveld 408576698