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

Unified Diff: third_party/WebKit/Source/core/testing/DummyPageHolder.h

Issue 2715173002: Final rename from FrameLoaderClient to LocalFrameClient: (Closed)
Patch Set: 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/testing/DummyPageHolder.h
diff --git a/third_party/WebKit/Source/core/testing/DummyPageHolder.h b/third_party/WebKit/Source/core/testing/DummyPageHolder.h
index 1be5ce924fce8d3d4fed614c3503f855b31ecb4c..2a6aa5786b25e119613ac3d88e9df4b856003c60 100644
--- a/third_party/WebKit/Source/core/testing/DummyPageHolder.h
+++ b/third_party/WebKit/Source/core/testing/DummyPageHolder.h
@@ -31,13 +31,13 @@
#ifndef DummyPageHolder_h
#define DummyPageHolder_h
-#include "core/loader/FrameLoaderClient.h"
+#include <memory>
+#include "core/frame/LocalFrameClient.h"
#include "core/page/Page.h"
#include "platform/geometry/IntSize.h"
#include "platform/heap/Handle.h"
#include "wtf/Allocator.h"
#include "wtf/Noncopyable.h"
-#include <memory>
namespace blink {
@@ -70,7 +70,7 @@ class DummyPageHolder {
static std::unique_ptr<DummyPageHolder> create(
const IntSize& initialViewSize = IntSize(),
Page::PageClients* = 0,
- FrameLoaderClient* = nullptr,
+ LocalFrameClient* = nullptr,
FrameSettingOverrideFunction = nullptr,
InterfaceProvider* = nullptr);
~DummyPageHolder();
@@ -83,7 +83,7 @@ class DummyPageHolder {
private:
DummyPageHolder(const IntSize& initialViewSize,
Page::PageClients*,
- FrameLoaderClient*,
+ LocalFrameClient*,
FrameSettingOverrideFunction settingOverrider,
InterfaceProvider* = nullptr);
@@ -96,7 +96,7 @@ class DummyPageHolder {
// TODO: rework the tests to not require cross-thread access.
CrossThreadPersistent<LocalFrame> m_frame;
- Persistent<FrameLoaderClient> m_frameLoaderClient;
+ Persistent<LocalFrameClient> m_localFrameClient;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/paint/VideoPainterTest.cpp ('k') | third_party/WebKit/Source/core/testing/DummyPageHolder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698