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

Unified Diff: webkit/browser/appcache/appcache_storage_impl_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_storage_impl_unittest.cc
diff --git a/webkit/browser/appcache/appcache_storage_impl_unittest.cc b/webkit/browser/appcache/appcache_storage_impl_unittest.cc
index e8940045f8e199b020b1ed000b1a592fc92d8060..72c60d22fb44161b1ff9ec69f0a393be0cb57bbf 100644
--- a/webkit/browser/appcache/appcache_storage_impl_unittest.cc
+++ b/webkit/browser/appcache/appcache_storage_impl_unittest.cc
@@ -1607,7 +1607,10 @@ class AppCacheStorageImplTest : public testing::Test {
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 {
error_event_was_raised_ = true;
}
virtual void OnLogMessage(int host_id, LogLevel log_level,

Powered by Google App Engine
This is Rietveld 408576698