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

Unified Diff: webkit/browser/appcache/appcache_unittest.cc

Issue 164933002: Expose details for appcache error events [Chromium] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make reason an enum Created 6 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: webkit/browser/appcache/appcache_unittest.cc
diff --git a/webkit/browser/appcache/appcache_unittest.cc b/webkit/browser/appcache/appcache_unittest.cc
index c0e49204c6fd14ddf3988d95df3ed5ad6cb7760e..1f605f7547352829117eccadbcb01649cf0a6273 100644
--- a/webkit/browser/appcache/appcache_unittest.cc
+++ b/webkit/browser/appcache/appcache_unittest.cc
@@ -24,7 +24,10 @@ class MockAppCacheFrontend : public AppCacheFrontend {
const GURL& url,
int num_total, int num_complete) OVERRIDE {}
virtual void OnErrorEventRaised(const std::vector<int>& host_ids,
- const std::string& message) OVERRIDE {}
+ const std::string& message,
+ appcache::ErrorReason reason,
+ const GURL& url,
+ int status) OVERRIDE {}
virtual void OnLogMessage(int host_id, LogLevel log_level,
const std::string& message) OVERRIDE {}
virtual void OnContentBlocked(

Powered by Google App Engine
This is Rietveld 408576698