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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp

Issue 2941883003: [ServiceWorker] Fetch event should return integrity value (Closed)
Patch Set: Rebase Created 3 years, 6 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: third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp
diff --git a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp
index a87671d0f3984bf23a6e87a7511c8f895537d250..c3a79512763995ac00d1f3d28054bfe4f842dafc 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp
+++ b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp
@@ -99,6 +99,7 @@ FetchEvent::FetchEvent(ScriptState* script_state,
if (initializer.hasRequest()) {
ScriptState::Scope scope(script_state);
request_ = initializer.request();
+
xiaofengzhang 2017/06/19 03:17:05 rebase error, should be discarded
v8::Local<v8::Value> request = ToV8(request_, script_state);
v8::Local<v8::Value> event = ToV8(this, script_state);
if (event.IsEmpty()) {

Powered by Google App Engine
This is Rietveld 408576698