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

Unified Diff: content/browser/service_worker/service_worker_script_cache_map.h

Issue 567903002: ServiceWorker: Change worker script fetch error code(2/3). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase & fix typo Created 6 years, 3 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: content/browser/service_worker/service_worker_script_cache_map.h
diff --git a/content/browser/service_worker/service_worker_script_cache_map.h b/content/browser/service_worker/service_worker_script_cache_map.h
index 45afcc3ba232e4de095df2d1c889a9c6944e24eb..7bcbf09eca68837229391c71e95c3b7f2704b0cf 100644
--- a/content/browser/service_worker/service_worker_script_cache_map.h
+++ b/content/browser/service_worker/service_worker_script_cache_map.h
@@ -12,6 +12,7 @@
#include "base/memory/weak_ptr.h"
#include "content/browser/service_worker/service_worker_database.h"
#include "content/common/content_export.h"
+#include "net/url_request/url_request_status.h"
class GURL;
@@ -29,10 +30,10 @@ class CONTENT_EXPORT ServiceWorkerScriptCacheMap {
// Used during the initial run of a new version to build the map
// of resources ids.
void NotifyStartedCaching(const GURL& url, int64 resource_id);
- void NotifyFinishedCaching(const GURL& url, bool success);
+ void NotifyFinishedCaching(const GURL& url,
+ const net::URLRequestStatus& status);
// Used to retrieve the results of the initial run of a new version.
- bool HasError() const { return has_error_; }
void GetResources(
std::vector<ServiceWorkerDatabase::ResourceRecord>* resources);
@@ -42,6 +43,10 @@ class CONTENT_EXPORT ServiceWorkerScriptCacheMap {
size_t size() const { return resource_ids_.size(); }
+ const net::URLRequestStatus& main_script_status() const {
+ return main_script_status_;
+ }
+
private:
typedef std::map<GURL, int64> ResourceIDMap;
@@ -55,7 +60,7 @@ class CONTENT_EXPORT ServiceWorkerScriptCacheMap {
ServiceWorkerVersion* owner_;
base::WeakPtr<ServiceWorkerContextCore> context_;
ResourceIDMap resource_ids_;
- bool has_error_;
+ net::URLRequestStatus main_script_status_;
DISALLOW_COPY_AND_ASSIGN(ServiceWorkerScriptCacheMap);
};

Powered by Google App Engine
This is Rietveld 408576698