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: Created 4 years, 3 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 e4d2cdced9b235a0f904c28cb55b4a8a454c7c4b..62c6758b759a7c073df697b8bb89ca5a15624b9d 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>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
@@ -27,10 +27,10 @@ public:
static CallbackFunctionTest* create() { return new CallbackFunctionTest(); }
- String testCallback(ScriptState*, V8TestCallback*, const String&, const String&, ExceptionState&);
- void testInterfaceCallback(ScriptState*, V8TestInterfaceCallback*, HTMLDivElement*, ExceptionState&);
- void testReceiverObjectCallback(ScriptState*, V8TestReceiverObjectCallback*, ExceptionState&);
- Vector<String> testSequenceCallback(ScriptState*, V8TestSequenceCallback*, const Vector<int>& numbers, ExceptionState&);
+ String testCallback(ScriptState*, TestCallback*, const String&, const String&, ExceptionState&);
+ void testInterfaceCallback(ScriptState*, TestInterfaceCallback*, HTMLDivElement*, ExceptionState&);
+ void testReceiverObjectCallback(ScriptState*, TestReceiverObjectCallback*, ExceptionState&);
+ Vector<String> testSequenceCallback(ScriptState*, TestSequenceCallback*, const Vector<int>& numbers, ExceptionState&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698