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

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

Issue 2595543003: Rename toV8(...) function in Blink to ToV8(...). (Closed)
Patch Set: Rebasing... Created 3 years, 11 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/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.

Powered by Google App Engine
This is Rietveld 408576698