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

Unified Diff: third_party/WebKit/Source/modules/filesystem/Entry.h

Issue 2610903002: Replace [CallWith=ExecutionContext] with [CallWith=ScriptState] (Closed)
Patch Set: 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/filesystem/Entry.h
diff --git a/third_party/WebKit/Source/modules/filesystem/Entry.h b/third_party/WebKit/Source/modules/filesystem/Entry.h
index 8778a47022dcea6c68aa5fdb523086301087e84c..04bb051a7a17f074b2d8e8313bda2be694e9ed8a 100644
--- a/third_party/WebKit/Source/modules/filesystem/Entry.h
+++ b/third_party/WebKit/Source/modules/filesystem/Entry.h
@@ -52,28 +52,28 @@ class MODULES_EXPORT Entry : public EntryBase, public ScriptWrappable {
DOMFileSystem* filesystem() const {
return static_cast<DOMFileSystem*>(m_fileSystem.get());
}
- DOMFileSystem* filesystem(ExecutionContext*) const;
+ DOMFileSystem* filesystem(ScriptState*) const;
- void getMetadata(ExecutionContext*,
+ void getMetadata(ScriptState*,
MetadataCallback* successCallback = nullptr,
ErrorCallback* = nullptr);
- void moveTo(ExecutionContext*,
+ void moveTo(ScriptState*,
DirectoryEntry* parent,
const String& name = String(),
EntryCallback* successCallback = nullptr,
ErrorCallback* = nullptr) const;
- void copyTo(ExecutionContext*,
+ void copyTo(ScriptState*,
DirectoryEntry* parent,
const String& name = String(),
EntryCallback* successCallback = nullptr,
ErrorCallback* = nullptr) const;
- void remove(ExecutionContext*,
+ void remove(ScriptState*,
VoidCallback* successCallback = nullptr,
ErrorCallback* = nullptr) const;
- void getParent(ExecutionContext*,
+ void getParent(ScriptState*,
EntryCallback* successCallback = nullptr,
ErrorCallback* = nullptr) const;
- String toURL(ExecutionContext*) const;
+ String toURL(ScriptState*) const;
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698