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

Unified Diff: third_party/WebKit/Source/core/dom/ElementVisibilityObserverTest.cpp

Issue 2721503002: Rename all uses of EmptyFrameLoaderClient with EmptyLocalFrameClient. (Closed)
Patch Set: Change V8 headers to user includes and introduce a space between system and user headers. Headers w… Created 3 years, 10 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/core/dom/ElementVisibilityObserverTest.cpp
diff --git a/third_party/WebKit/Source/core/dom/ElementVisibilityObserverTest.cpp b/third_party/WebKit/Source/core/dom/ElementVisibilityObserverTest.cpp
index 02f03b07793a65bfc272ff501a49f9f93d362576..b0822863abf03983619138896e9ad26c5f9d842e 100644
--- a/third_party/WebKit/Source/core/dom/ElementVisibilityObserverTest.cpp
+++ b/third_party/WebKit/Source/core/dom/ElementVisibilityObserverTest.cpp
@@ -21,7 +21,7 @@ namespace {
// alow callers to set the parent/top frames by calling |setParent|. It is used
// in ElementVisibilityObserverTest in order to mock a RemoteFrame parent of a
// LocalFrame.
-class StubFrameLoaderClient final : public EmptyFrameLoaderClient {
+class StubFrameLoaderClient final : public EmptyLocalFrameClient {
public:
Frame* parent() const override { return m_parent; }
Frame* top() const override { return m_parent; }
@@ -30,7 +30,7 @@ class StubFrameLoaderClient final : public EmptyFrameLoaderClient {
DEFINE_INLINE_VIRTUAL_TRACE() {
visitor->trace(m_parent);
- EmptyFrameLoaderClient::trace(visitor);
+ EmptyLocalFrameClient::trace(visitor);
}
private:

Powered by Google App Engine
This is Rietveld 408576698