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

Unified Diff: third_party/WebKit/Source/platform/loader/fetch/ResourceTest.cpp

Issue 2809113002: ur_ls -> urls in platform/loader/fetch (Closed)
Patch Set: Created 3 years, 8 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/platform/loader/fetch/MemoryCache.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/platform/loader/fetch/ResourceTest.cpp
diff --git a/third_party/WebKit/Source/platform/loader/fetch/ResourceTest.cpp b/third_party/WebKit/Source/platform/loader/fetch/ResourceTest.cpp
index 4670840e96eb2664a4599ef430670948fd722391..10d9b50d299d9afe53ada50a4bbc5b935b166dcd 100644
--- a/third_party/WebKit/Source/platform/loader/fetch/ResourceTest.cpp
+++ b/third_party/WebKit/Source/platform/loader/fetch/ResourceTest.cpp
@@ -25,13 +25,13 @@ class MockPlatform final : public TestingPlatformSupportWithMockScheduler {
// From blink::Platform:
void CacheMetadata(const WebURL& url, int64_t, const char*, size_t) override {
- cached_ur_ls_.push_back(url);
+ cached_urls_.push_back(url);
}
- const Vector<WebURL>& CachedURLs() const { return cached_ur_ls_; }
+ const Vector<WebURL>& CachedURLs() const { return cached_urls_; }
private:
- Vector<WebURL> cached_ur_ls_;
+ Vector<WebURL> cached_urls_;
};
ResourceResponse CreateTestResourceResponse() {
« no previous file with comments | « third_party/WebKit/Source/platform/loader/fetch/MemoryCache.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698