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

Unified Diff: third_party/WebKit/Source/web/WebDOMFileSystem.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/web/WebDOMFileSystem.cpp
diff --git a/third_party/WebKit/Source/web/WebDOMFileSystem.cpp b/third_party/WebKit/Source/web/WebDOMFileSystem.cpp
index 16e2f587398ec7129255041f430abf0c3e764950..5e500e1a47d977540fdc8fa1667a3afebd1ed2b7 100644
--- a/third_party/WebKit/Source/web/WebDOMFileSystem.cpp
+++ b/third_party/WebKit/Source/web/WebDOMFileSystem.cpp
@@ -118,7 +118,7 @@ v8::Local<v8::Value> WebDOMFileSystem::toV8Value(
DCHECK(creationContext->CreationContext() == isolate->GetCurrentContext());
if (!m_private.get())
return v8::Local<v8::Value>();
- return toV8(m_private.get(), isolate->GetCurrentContext()->Global(), isolate);
+ return ToV8(m_private.get(), isolate->GetCurrentContext()->Global(), isolate);
}
v8::Local<v8::Value> WebDOMFileSystem::createV8Entry(
@@ -132,10 +132,10 @@ v8::Local<v8::Value> WebDOMFileSystem::createV8Entry(
if (!m_private.get())
return v8::Local<v8::Value>();
if (entryType == EntryTypeDirectory)
- return toV8(DirectoryEntry::create(m_private.get(), path),
+ return ToV8(DirectoryEntry::create(m_private.get(), path),
isolate->GetCurrentContext()->Global(), isolate);
DCHECK_EQ(entryType, EntryTypeFile);
- return toV8(FileEntry::create(m_private.get(), path),
+ return ToV8(FileEntry::create(m_private.get(), path),
isolate->GetCurrentContext()->Global(), isolate);
}
« no previous file with comments | « third_party/WebKit/Source/web/WebBlob.cpp ('k') | third_party/WebKit/Source/web/WebDevToolsFrontendImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698