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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/LongCallbackFunction.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/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

Powered by Google App Engine
This is Rietveld 408576698