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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunction.cpp

Issue 2408083003: Drop [ExperimentalCallbackFunction] (Closed)
Patch Set: Update tests and expectations 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/bindings/tests/results/core/VoidCallbackFunction.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/VoidExperimentalCallbackFunction.cpp b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunction.cpp
similarity index 84%
rename from third_party/WebKit/Source/bindings/tests/results/core/VoidExperimentalCallbackFunction.cpp
rename to third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunction.cpp
index 4260b73fea03c8ce663b84b271753361018c6e30..be5f337b32745437edd2120021da0d7abe5c4c3e 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/VoidExperimentalCallbackFunction.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunction.cpp
@@ -6,7 +6,7 @@
// clang-format off
-#include "VoidExperimentalCallbackFunction.h"
+#include "VoidCallbackFunction.h"
#include "bindings/core/v8/ExceptionState.h"
#include "bindings/core/v8/ScriptState.h"
@@ -17,18 +17,18 @@
namespace blink {
-VoidExperimentalCallbackFunction::VoidExperimentalCallbackFunction(v8::Isolate* isolate, v8::Local<v8::Function> callback)
+VoidCallbackFunction::VoidCallbackFunction(v8::Isolate* isolate, v8::Local<v8::Function> callback)
: m_callback(isolate, callback)
{
DCHECK(!m_callback.isEmpty());
m_callback.setPhantom();
}
-DEFINE_TRACE(VoidExperimentalCallbackFunction)
+DEFINE_TRACE(VoidCallbackFunction)
{
}
-bool VoidExperimentalCallbackFunction::call(ScriptState* scriptState, ScriptWrappable* scriptWrappable)
+bool VoidCallbackFunction::call(ScriptState* scriptState, ScriptWrappable* scriptWrappable)
{
if (!scriptState->contextIsValid())
return false;

Powered by Google App Engine
This is Rietveld 408576698