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

Unified Diff: third_party/WebKit/Source/core/timing/PerformanceObserverTest.cpp

Issue 2383613003: Remove 'V8' prefix from generated callback function classes (Closed)
Patch Set: rebase 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
« no previous file with comments | « third_party/WebKit/Source/core/timing/PerformanceObserver.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/timing/PerformanceObserverTest.cpp
diff --git a/third_party/WebKit/Source/core/timing/PerformanceObserverTest.cpp b/third_party/WebKit/Source/core/timing/PerformanceObserverTest.cpp
index ac86ce83210d6020d174f84253c858e05cb5faa5..a8012f32b6ed2224d5158f8a45d8829e9e9af88e 100644
--- a/third_party/WebKit/Source/core/timing/PerformanceObserverTest.cpp
+++ b/third_party/WebKit/Source/core/timing/PerformanceObserverTest.cpp
@@ -4,8 +4,8 @@
#include "core/timing/PerformanceObserver.h"
+#include "bindings/core/v8/PerformanceObserverCallback.h"
#include "bindings/core/v8/V8BindingForTesting.h"
-#include "bindings/core/v8/V8PerformanceObserverCallback.h"
#include "core/timing/Performance.h"
#include "core/timing/PerformanceBase.h"
#include "core/timing/PerformanceMark.h"
@@ -29,7 +29,7 @@ class PerformanceObserverTest : public ::testing::Test {
v8::Function::New(scriptState->context(), nullptr).ToLocalChecked();
m_base = new MockPerformanceBase();
m_cb =
- V8PerformanceObserverCallback::create(scriptState->isolate(), callback);
+ PerformanceObserverCallback::create(scriptState->isolate(), callback);
m_observer = PerformanceObserver::create(scriptState, m_base, m_cb);
}
@@ -40,7 +40,7 @@ class PerformanceObserverTest : public ::testing::Test {
void deliver() { m_observer->deliver(); }
Persistent<MockPerformanceBase> m_base;
- Persistent<V8PerformanceObserverCallback> m_cb;
+ Persistent<PerformanceObserverCallback> m_cb;
Persistent<PerformanceObserver> m_observer;
};
« no previous file with comments | « third_party/WebKit/Source/core/timing/PerformanceObserver.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698