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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/modules/VoidCallbackFunctionModules.cpp

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/modules/VoidCallbackFunctionModules.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/modules/V8VoidCallbackFunctionModules.cpp b/third_party/WebKit/Source/bindings/tests/results/modules/VoidCallbackFunctionModules.cpp
similarity index 81%
rename from third_party/WebKit/Source/bindings/tests/results/modules/V8VoidCallbackFunctionModules.cpp
rename to third_party/WebKit/Source/bindings/tests/results/modules/VoidCallbackFunctionModules.cpp
index b3991db6552797f4e1c77b0442c2c1abe44200cd..145068f2243e3db9561e421f43e97ef0b1b2b1b1 100644
--- a/third_party/WebKit/Source/bindings/tests/results/modules/V8VoidCallbackFunctionModules.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/modules/VoidCallbackFunctionModules.cpp
@@ -6,7 +6,7 @@
// clang-format off
-#include "V8VoidCallbackFunctionModules.h"
+#include "VoidCallbackFunctionModules.h"
#include "bindings/core/v8/ScriptState.h"
#include "bindings/core/v8/ToV8.h"
@@ -16,18 +16,18 @@
namespace blink {
-V8VoidCallbackFunctionModules::V8VoidCallbackFunctionModules(v8::Isolate* isolate, v8::Local<v8::Function> callback)
+VoidCallbackFunctionModules::VoidCallbackFunctionModules(v8::Isolate* isolate, v8::Local<v8::Function> callback)
: m_callback(isolate, callback)
{
DCHECK(!m_callback.isEmpty());
m_callback.setPhantom();
}
-DEFINE_TRACE(V8VoidCallbackFunctionModules)
+DEFINE_TRACE(VoidCallbackFunctionModules)
{
}
-bool V8VoidCallbackFunctionModules::call(ScriptState* scriptState, ScriptWrappable* scriptWrappable, ExceptionState& exceptionState)
+bool VoidCallbackFunctionModules::call(ScriptState* scriptState, ScriptWrappable* scriptWrappable, ExceptionState& exceptionState)
{
if (!scriptState->contextIsValid())
return false;

Powered by Google App Engine
This is Rietveld 408576698