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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackInterface.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/results/core/V8TestCallbackInterface.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackInterface.h b/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackInterface.h
index 2442cc8a8474cb7c091895150705f42cf2b203cc..f013f9274d877fffa7a8a7887988602cbd03ebec 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackInterface.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackInterface.h
@@ -16,7 +16,7 @@
namespace blink {
class V8TestCallbackInterface final : public TestCallbackInterface, public ActiveDOMCallback {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(V8TestCallbackInterface);
+ USING_GARBAGE_COLLECTED_MIXIN(V8TestCallbackInterface);
public:
static V8TestCallbackInterface* create(v8::Local<v8::Function> callback, ScriptState* scriptState)
{
@@ -36,8 +36,8 @@ public:
void voidMethodTestInterfaceEmptyStringArg(TestInterfaceEmpty* testInterfaceEmptyArg, const String& stringArg) override;
void callbackWithThisValueVoidMethodStringArg(ScriptValue thisValue, const String& stringArg) override;
void customVoidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg) override;
- void voidMethodWillBeGarbageCollectedSequenceArg(const WillBeHeapVector<RefPtrWillBeMember<TestInterfaceWillBeGarbageCollected>>& sequenceArg) override;
- void voidMethodWillBeGarbageCollectedArrayArg(const WillBeHeapVector<RefPtrWillBeMember<TestInterfaceWillBeGarbageCollected>>& arrayArg) override;
+ void voidMethodWillBeGarbageCollectedSequenceArg(const HeapVector<Member<TestInterfaceWillBeGarbageCollected>>& sequenceArg) override;
+ void voidMethodWillBeGarbageCollectedArrayArg(const HeapVector<Member<TestInterfaceWillBeGarbageCollected>>& arrayArg) override;
private:
CORE_EXPORT V8TestCallbackInterface(v8::Local<v8::Function>, ScriptState*);

Powered by Google App Engine
This is Rietveld 408576698