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

Unified Diff: Source/web/WebDOMFileSystem.cpp

Issue 537403002: bindings: Renames from/toInternalPointer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 3 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
« no previous file with comments | « Source/web/WebBlob.cpp ('k') | Source/web/WebDOMMediaStreamTrack.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDOMFileSystem.cpp
diff --git a/Source/web/WebDOMFileSystem.cpp b/Source/web/WebDOMFileSystem.cpp
index 5bc8ccd3b0706ec4d1f8d24c3862e220c89c0f38..b4a8192856d167824da53e542c8d10346cfdeeef 100644
--- a/Source/web/WebDOMFileSystem.cpp
+++ b/Source/web/WebDOMFileSystem.cpp
@@ -49,14 +49,14 @@ WebDOMFileSystem WebDOMFileSystem::fromV8Value(v8::Handle<v8::Value> value)
if (!V8DOMFileSystem::hasInstance(value, v8::Isolate::GetCurrent()))
return WebDOMFileSystem();
v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(value);
- DOMFileSystem* domFileSystem = V8DOMFileSystem::toNative(object);
+ DOMFileSystem* domFileSystem = V8DOMFileSystem::toImpl(object);
ASSERT(domFileSystem);
return WebDOMFileSystem(domFileSystem);
}
WebURL WebDOMFileSystem::createFileSystemURL(v8::Handle<v8::Value> value)
{
- const FileEntry* const entry = V8FileEntry::toNativeWithTypeCheck(v8::Isolate::GetCurrent(), value);
+ const FileEntry* const entry = V8FileEntry::toImplWithTypeCheck(v8::Isolate::GetCurrent(), value);
if (entry)
return entry->filesystem()->createFileSystemURL(entry);
return WebURL();
« no previous file with comments | « Source/web/WebBlob.cpp ('k') | Source/web/WebDOMMediaStreamTrack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698