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

Unified Diff: third_party/WebKit/Source/core/loader/PingLoaderTest.cpp

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/loader/PingLoaderTest.cpp
diff --git a/third_party/WebKit/Source/core/loader/PingLoaderTest.cpp b/third_party/WebKit/Source/core/loader/PingLoaderTest.cpp
index 106ade62c99277c312d6d7765477317e10667214..8406bdca9c9b4d7c2a9d6477c0c8ba7a44fe6bf3 100644
--- a/third_party/WebKit/Source/core/loader/PingLoaderTest.cpp
+++ b/third_party/WebKit/Source/core/loader/PingLoaderTest.cpp
@@ -20,7 +20,7 @@ namespace blink {
namespace {
-class PingFrameLoaderClient : public EmptyLocalFrameClient {
+class PingLocalFrameClient : public EmptyLocalFrameClient {
public:
void dispatchWillSendRequest(ResourceRequest& request) override {
if (request.httpContentType() == "text/ping")
@@ -36,7 +36,7 @@ class PingFrameLoaderClient : public EmptyLocalFrameClient {
class PingLoaderTest : public ::testing::Test {
public:
void SetUp() override {
- m_client = new PingFrameLoaderClient;
+ m_client = new PingLocalFrameClient;
m_pageHolder = DummyPageHolder::create(IntSize(1, 1), nullptr, m_client);
}
@@ -73,7 +73,7 @@ class PingLoaderTest : public ::testing::Test {
}
private:
- Persistent<PingFrameLoaderClient> m_client;
+ Persistent<PingLocalFrameClient> m_client;
std::unique_ptr<DummyPageHolder> m_pageHolder;
};

Powered by Google App Engine
This is Rietveld 408576698