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