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

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

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.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/VoidExperimentalCallbackFunction.h b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunction.h
similarity index 62%
rename from third_party/WebKit/Source/bindings/tests/results/core/VoidExperimentalCallbackFunction.h
rename to third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunction.h
index 6ae3c067b2f166d929e60f0221b97195cc60151f..b316aac088697737481581902538706ea00d5c09 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/VoidExperimentalCallbackFunction.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunction.h
@@ -6,8 +6,8 @@
// clang-format off
-#ifndef VoidExperimentalCallbackFunction_h
-#define VoidExperimentalCallbackFunction_h
+#ifndef VoidCallbackFunction_h
+#define VoidCallbackFunction_h
#include "bindings/core/v8/ScopedPersistent.h"
#include "core/CoreExport.h"
@@ -18,14 +18,14 @@ namespace blink {
class ScriptState;
-class CORE_EXPORT VoidExperimentalCallbackFunction final : public GarbageCollectedFinalized<VoidExperimentalCallbackFunction> {
+class CORE_EXPORT VoidCallbackFunction final : public GarbageCollectedFinalized<VoidCallbackFunction> {
public:
- static VoidExperimentalCallbackFunction* create(v8::Isolate* isolate, v8::Local<v8::Function> callback)
+ static VoidCallbackFunction* create(v8::Isolate* isolate, v8::Local<v8::Function> callback)
{
- return new VoidExperimentalCallbackFunction(isolate, callback);
+ return new VoidCallbackFunction(isolate, callback);
}
- ~VoidExperimentalCallbackFunction() = default;
+ ~VoidCallbackFunction() = default;
DECLARE_TRACE();
@@ -43,10 +43,10 @@ public:
}
private:
- VoidExperimentalCallbackFunction(v8::Isolate* isolate, v8::Local<v8::Function>);
+ VoidCallbackFunction(v8::Isolate* isolate, v8::Local<v8::Function>);
ScopedPersistent<v8::Function> m_callback;
};
} // namespace blink
-#endif // VoidExperimentalCallbackFunction_h
+#endif // VoidCallbackFunction_h

Powered by Google App Engine
This is Rietveld 408576698