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

Unified Diff: third_party/WebKit/Source/core/loader/FrameFetchContextTest.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/loader/FrameFetchContextTest.cpp
diff --git a/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp b/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
index 3f78de43b237ed18a0ef784352798895cfc797bc..bfd5c4a62c726c86dc540ba81b9adca37476f69f 100644
--- a/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
+++ b/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
@@ -56,7 +56,7 @@
namespace blink {
-class StubFrameLoaderClientWithParent final : public EmptyFrameLoaderClient {
+class StubFrameLoaderClientWithParent final : public EmptyLocalFrameClient {
public:
static StubFrameLoaderClientWithParent* create(Frame* parent) {
return new StubFrameLoaderClientWithParent(parent);
@@ -64,7 +64,7 @@ class StubFrameLoaderClientWithParent final : public EmptyFrameLoaderClient {
DEFINE_INLINE_VIRTUAL_TRACE() {
visitor->trace(m_parent);
- EmptyFrameLoaderClient::trace(visitor);
+ EmptyLocalFrameClient::trace(visitor);
}
Frame* parent() const override { return m_parent.get(); }
@@ -75,9 +75,9 @@ class StubFrameLoaderClientWithParent final : public EmptyFrameLoaderClient {
Member<Frame> m_parent;
};
-class MockFrameLoaderClient : public EmptyFrameLoaderClient {
+class MockFrameLoaderClient : public EmptyLocalFrameClient {
public:
- MockFrameLoaderClient() : EmptyFrameLoaderClient() {}
+ MockFrameLoaderClient() : EmptyLocalFrameClient() {}
MOCK_METHOD1(didDisplayContentWithCertificateErrors, void(const KURL&));
MOCK_METHOD2(dispatchDidLoadResourceFromMemoryCache,
void(const ResourceRequest&, const ResourceResponse&));

Powered by Google App Engine
This is Rietveld 408576698