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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ToV8Test.cpp

Issue 1883663005: Remove remaining binding layer RawPtr<>s. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/bindings/core/v8/ToV8Test.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ToV8Test.cpp b/third_party/WebKit/Source/bindings/core/v8/ToV8Test.cpp
index d43dc0d2266721335d1765da5ecacee27f56d72e..e4ac84cef94c78560568c2eb1b3e4c183cc6ca61 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ToV8Test.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ToV8Test.cpp
@@ -67,7 +67,6 @@ TEST_F(ToV8Test, garbageCollectedScriptWrappable)
OffHeapGarbageCollectedHolder offHeapHolder(object);
TEST_TOV8("world", object);
- TEST_TOV8("world", RawPtr<GarbageCollectedScriptWrappable>(object));
TEST_TOV8("world", holder.m_scriptWrappable);
TEST_TOV8("world", offHeapHolder.m_scriptWrappable);
@@ -76,7 +75,6 @@ TEST_F(ToV8Test, garbageCollectedScriptWrappable)
offHeapHolder.m_scriptWrappable = nullptr;
TEST_TOV8("null", object);
- TEST_TOV8("null", RawPtr<GarbageCollectedScriptWrappable>(object));
TEST_TOV8("null", holder.m_scriptWrappable);
TEST_TOV8("null", offHeapHolder.m_scriptWrappable);
}
« no previous file with comments | « third_party/WebKit/Source/bindings/core/v8/ToV8.h ('k') | third_party/WebKit/Source/bindings/core/v8/V8Binding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698