| Index: third_party/WebKit/Source/modules/serviceworkers/ForeignFetchEvent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ForeignFetchEvent.cpp b/third_party/WebKit/Source/modules/serviceworkers/ForeignFetchEvent.cpp
|
| index bd4cebc142fc55c0fe694fefba3eabdc33147d26..e56a820eac9a2ec59fd3ea03b4ca03b792eb97ce 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ForeignFetchEvent.cpp
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ForeignFetchEvent.cpp
|
| @@ -64,8 +64,8 @@ ForeignFetchEvent::ForeignFetchEvent(
|
| m_request = initializer.request();
|
| ScriptState::Scope scope(scriptState);
|
| m_request = initializer.request();
|
| - v8::Local<v8::Value> request = toV8(m_request, scriptState);
|
| - v8::Local<v8::Value> event = toV8(this, scriptState);
|
| + v8::Local<v8::Value> request = ToV8(m_request, scriptState);
|
| + v8::Local<v8::Value> event = ToV8(this, scriptState);
|
| if (event.IsEmpty()) {
|
| // |toV8| can return an empty handle when the worker is terminating.
|
| // We don't want the renderer to crash in such cases.
|
|
|