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

Unified Diff: third_party/WebKit/Source/core/testing/CallbackFunctionTest.h

Issue 2383613003: Remove 'V8' prefix from generated callback function classes (Closed)
Patch Set: rebase Created 4 years, 2 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/testing/CallbackFunctionTest.h
diff --git a/third_party/WebKit/Source/core/testing/CallbackFunctionTest.h b/third_party/WebKit/Source/core/testing/CallbackFunctionTest.h
index 0e4a2747ac6ae9272ac7d7a11aaeba9fd3186d40..d283ac7cb5a64bdc74fbb6c19bcad54c3abb9ffa 100644
--- a/third_party/WebKit/Source/core/testing/CallbackFunctionTest.h
+++ b/third_party/WebKit/Source/core/testing/CallbackFunctionTest.h
@@ -15,10 +15,10 @@ namespace blink {
class ExceptionState;
class HTMLDivElement;
class ScriptState;
-class V8TestCallback;
-class V8TestInterfaceCallback;
-class V8TestReceiverObjectCallback;
-class V8TestSequenceCallback;
+class TestCallback;
+class TestInterfaceCallback;
+class TestReceiverObjectCallback;
+class TestSequenceCallback;
class CallbackFunctionTest final
: public GarbageCollected<CallbackFunctionTest>,
@@ -31,19 +31,19 @@ class CallbackFunctionTest final
static CallbackFunctionTest* create() { return new CallbackFunctionTest(); }
String testCallback(ScriptState*,
- V8TestCallback*,
+ TestCallback*,
const String&,
const String&,
ExceptionState&);
void testInterfaceCallback(ScriptState*,
- V8TestInterfaceCallback*,
+ TestInterfaceCallback*,
HTMLDivElement*,
ExceptionState&);
void testReceiverObjectCallback(ScriptState*,
- V8TestReceiverObjectCallback*,
+ TestReceiverObjectCallback*,
ExceptionState&);
Vector<String> testSequenceCallback(ScriptState*,
- V8TestSequenceCallback*,
+ TestSequenceCallback*,
const Vector<int>& numbers,
ExceptionState&);
};

Powered by Google App Engine
This is Rietveld 408576698