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

Unified Diff: third_party/WebKit/Source/bindings/tests/idls/core/TestDictionary.idl

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/tests/idls/core/TestDictionary.idl
diff --git a/third_party/WebKit/Source/bindings/tests/idls/core/TestDictionary.idl b/third_party/WebKit/Source/bindings/tests/idls/core/TestDictionary.idl
index 0ac0a68fd4b74a819d1fdf6c8b72b604402d2f90..62949565e3a201168cb58ceef42c643456e5efd4 100644
--- a/third_party/WebKit/Source/bindings/tests/idls/core/TestDictionary.idl
+++ b/third_party/WebKit/Source/bindings/tests/idls/core/TestDictionary.idl
@@ -14,13 +14,13 @@ dictionary TestDictionary {
TestInterface? testInterfaceOrNullMember;
TestInterfaceGarbageCollected testInterfaceGarbageCollectedMember;
TestInterfaceGarbageCollected? testInterfaceGarbageCollectedOrNullMember;
- TestInterfaceWillBeGarbageCollected testInterfaceWillBeGarbageCollectedMember;
- TestInterfaceWillBeGarbageCollected? testInterfaceWillBeGarbageCollectedOrNullMember;
+ TestInterfaceGarbageCollected testInterfaceGarbageCollectedMember;
sof 2016/02/09 15:45:45 duplication w/ above - is that legal to declare?
+ TestInterfaceGarbageCollected? testInterfaceGarbageCollectedOrNullMember;
DOMString[] stringArrayMember;
sequence<DOMString> stringSequenceMember = [];
sequence<TestInterface> testInterfaceSequenceMember = [];
sequence<TestInterfaceGarbageCollected> testInterfaceGarbageCollectedSequenceMember = [];
- sequence<TestInterfaceWillBeGarbageCollected> testInterfaceWillBeGarbageCollectedSequenceMember = [];
+ sequence<TestInterfaceGarbageCollected> testInterfaceGarbageCollectedSequenceMember = [];
TestEnum enumMember = "foo";
sequence<TestEnum> enumSequenceMember;
Element? elementOrNullMember;

Powered by Google App Engine
This is Rietveld 408576698