| Index: third_party/WebKit/Source/core/fileapi/File.h
|
| diff --git a/third_party/WebKit/Source/core/fileapi/File.h b/third_party/WebKit/Source/core/fileapi/File.h
|
| index 481fc1e2400f73df56a1e436d0d3247c78862601..d1e212ba5a3725c5505650fc47c4833c0796c087 100644
|
| --- a/third_party/WebKit/Source/core/fileapi/File.h
|
| +++ b/third_party/WebKit/Source/core/fileapi/File.h
|
| @@ -40,6 +40,7 @@ class ExecutionContext;
|
| class FilePropertyBag;
|
| class FileMetadata;
|
| class KURL;
|
| +class ScriptState;
|
|
|
| class CORE_EXPORT File final : public Blob {
|
| DEFINE_WRAPPERTYPEINFO();
|
| @@ -151,7 +152,7 @@ class CORE_EXPORT File final : public Blob {
|
| long long end,
|
| const String& contentType,
|
| ExceptionState&) const override;
|
| - void close(ExecutionContext*, ExceptionState&) override;
|
| + void close(ScriptState*, ExceptionState&) override;
|
|
|
| bool isFile() const override { return true; }
|
| bool hasBackingFile() const override { return m_hasBackingFile; }
|
|
|