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

Unified Diff: Source/web/WebDOMFileSystem.cpp

Issue 326573002: Remove public web methods using toV8 with empty context. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « Source/web/WebDOMError.cpp ('k') | public/web/WebBlob.h » ('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 739121a812d42708bfcae2f96d5b7f5c883fba20..5dde1b9e4b2a6c5b2b67be81bb63c92537eefac5 100644
--- a/Source/web/WebDOMFileSystem.cpp
+++ b/Source/web/WebDOMFileSystem.cpp
@@ -118,14 +118,6 @@ WebURL WebDOMFileSystem::rootURL() const
return m_private->rootURL();
}
-// FIXME: should be removed after fixing chrome side code.
-v8::Handle<v8::Value> WebDOMFileSystem::toV8Value()
-{
- if (!m_private.get())
- return v8::Handle<v8::Value>();
- return toV8Value(v8::Handle<v8::Object>(), toIsolate(m_private->executionContext()));
-}
-
v8::Handle<v8::Value> WebDOMFileSystem::toV8Value(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
if (!m_private.get())
@@ -133,16 +125,6 @@ v8::Handle<v8::Value> WebDOMFileSystem::toV8Value(v8::Handle<v8::Object> creatio
return toV8(m_private.get(), creationContext, isolate);
}
-// FIXME: should be removed after fixing chrome side code.
-v8::Handle<v8::Value> WebDOMFileSystem::createV8Entry(
- const WebString& path,
- EntryType entryType)
-{
- if (!m_private.get())
- return v8::Handle<v8::Value>();
- return createV8Entry(path, entryType, v8::Handle<v8::Object>(), toIsolate(m_private->executionContext()));
-}
-
v8::Handle<v8::Value> WebDOMFileSystem::createV8Entry(
const WebString& path,
EntryType entryType,
« no previous file with comments | « Source/web/WebDOMError.cpp ('k') | public/web/WebBlob.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698