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

Unified Diff: third_party/WebKit/Source/core/fileapi/File.h

Issue 2697723003: Replace [CallWith=ExecutionContext] with [CallWith=ScriptState] (Closed)
Patch Set: Window.{focus|close} both take ExecutionContext. Created 3 years, 9 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 | « third_party/WebKit/Source/core/fileapi/Blob.idl ('k') | third_party/WebKit/Source/core/fileapi/File.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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; }
« no previous file with comments | « third_party/WebKit/Source/core/fileapi/Blob.idl ('k') | third_party/WebKit/Source/core/fileapi/File.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698