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

Unified Diff: webkit/appcache/appcache_request_handler_unittest.cc

Issue 8949001: Fix some loose ends around recently introduced AppCache INTERCEPT namespaces (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 years, 12 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: webkit/appcache/appcache_request_handler_unittest.cc
===================================================================
--- webkit/appcache/appcache_request_handler_unittest.cc (revision 116156)
+++ webkit/appcache/appcache_request_handler_unittest.cc (working copy)
@@ -361,8 +361,8 @@
handler_->GetExtraResponseInfo(&cache_id, &manifest_url);
EXPECT_EQ(1, cache_id);
EXPECT_EQ(GURL("http://blah/manifest/"), manifest_url);
- EXPECT_TRUE(host_->main_resource_was_fallback_);
- EXPECT_EQ(GURL("http://blah/fallbackurl"), host_->fallback_url_);
+ EXPECT_TRUE(host_->main_resource_was_namespace_entry_);
+ EXPECT_EQ(GURL("http://blah/fallbackurl"), host_->namespace_entry_url_);
EXPECT_EQ(GURL("http://blah/manifest/"),
host_->preferred_manifest_url());

Powered by Google App Engine
This is Rietveld 408576698