Index: content/common/service_worker/service_worker_types.h |
diff --git a/content/common/service_worker/service_worker_types.h b/content/common/service_worker/service_worker_types.h |
index 86324baf8d320fe65ee1b4c820942d1f1bcce1f5..43e8ebbaca3e5afb945291c87934f2d303b7a5af 100644 |
--- a/content/common/service_worker/service_worker_types.h |
+++ b/content/common/service_worker/service_worker_types.h |
@@ -48,12 +48,14 @@ struct CONTENT_EXPORT ServiceWorkerFetchRequest { |
ServiceWorkerFetchRequest(const GURL& url, |
const std::string& method, |
const std::map<std::string, std::string>& headers, |
+ const GURL& referrer, |
bool is_reload); |
~ServiceWorkerFetchRequest(); |
GURL url; |
std::string method; |
std::map<std::string, std::string> headers; |
+ GURL referrer; |
bool is_reload; |
}; |