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

Unified Diff: content/browser/appcache/appcache_storage_impl_unittest.cc

Issue 2481923002: [WIP] make GURL::path() return a StringPiece (Closed)
Patch Set: thanks asan Created 4 years, 1 month 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 | « components/url_matcher/url_matcher.cc ('k') | content/browser/appcache/appcache_update_job_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/appcache/appcache_storage_impl_unittest.cc
diff --git a/content/browser/appcache/appcache_storage_impl_unittest.cc b/content/browser/appcache/appcache_storage_impl_unittest.cc
index 9d815d54d7c78c71373ef56f68078bd6c2d8a8ab..2df597bfbc6aee40cb1d465e2a4eeb3eda179742 100644
--- a/content/browser/appcache/appcache_storage_impl_unittest.cc
+++ b/content/browser/appcache/appcache_storage_impl_unittest.cc
@@ -96,7 +96,7 @@ class MockHttpServer {
return new net::URLRequestErrorJob(request, network_delegate, -100);
std::string headers, body;
- GetMockResponse(request->url().path(), &headers, &body);
+ GetMockResponse(request->url().path().as_string(), &headers, &body);
return new net::URLRequestTestJob(
request, network_delegate, headers, body, true);
}
« no previous file with comments | « components/url_matcher/url_matcher.cc ('k') | content/browser/appcache/appcache_update_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698