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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionInterfaceArg.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/bindings/tests/results/core/VoidCallbackFunctionInterfaceArg.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8VoidCallbackFunctionInterfaceArg.h b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionInterfaceArg.h
similarity index 64%
rename from third_party/WebKit/Source/bindings/tests/results/core/V8VoidCallbackFunctionInterfaceArg.h
rename to third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionInterfaceArg.h
index a99fbd1950cb8015c7b9ddc82e5c963da29a3275..96bbde98850033052a1967827b91756aa002cfce 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8VoidCallbackFunctionInterfaceArg.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionInterfaceArg.h
@@ -6,8 +6,8 @@
// clang-format off
-#ifndef V8VoidCallbackFunctionInterfaceArg_h
-#define V8VoidCallbackFunctionInterfaceArg_h
+#ifndef VoidCallbackFunctionInterfaceArg_h
+#define VoidCallbackFunctionInterfaceArg_h
#include "bindings/core/v8/ExceptionState.h"
#include "bindings/core/v8/ScopedPersistent.h"
@@ -20,14 +20,14 @@ namespace blink {
class ScriptState;
class HTMLDivElement;
-class CORE_EXPORT V8VoidCallbackFunctionInterfaceArg final : public GarbageCollectedFinalized<V8VoidCallbackFunctionInterfaceArg> {
+class CORE_EXPORT VoidCallbackFunctionInterfaceArg final : public GarbageCollectedFinalized<VoidCallbackFunctionInterfaceArg> {
public:
- static V8VoidCallbackFunctionInterfaceArg* create(v8::Isolate* isolate, v8::Local<v8::Function> callback)
+ static VoidCallbackFunctionInterfaceArg* create(v8::Isolate* isolate, v8::Local<v8::Function> callback)
{
- return new V8VoidCallbackFunctionInterfaceArg(isolate, callback);
+ return new VoidCallbackFunctionInterfaceArg(isolate, callback);
}
- ~V8VoidCallbackFunctionInterfaceArg() = default;
+ ~VoidCallbackFunctionInterfaceArg() = default;
DECLARE_TRACE();
@@ -45,10 +45,10 @@ public:
}
private:
- V8VoidCallbackFunctionInterfaceArg(v8::Isolate* isolate, v8::Local<v8::Function>);
+ VoidCallbackFunctionInterfaceArg(v8::Isolate* isolate, v8::Local<v8::Function>);
ScopedPersistent<v8::Function> m_callback;
};
} // namespace blink
-#endif // V8VoidCallbackFunctionInterfaceArg_h
+#endif // VoidCallbackFunctionInterfaceArg_h

Powered by Google App Engine
This is Rietveld 408576698