| 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();
|
|
|
|
|