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

Unified Diff: third_party/WebKit/Source/core/fileapi/Blob.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 | « no previous file | third_party/WebKit/Source/core/fileapi/Blob.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/Blob.h
diff --git a/third_party/WebKit/Source/core/fileapi/Blob.h b/third_party/WebKit/Source/core/fileapi/Blob.h
index ba04c3c64e99995ec729d2894a537c4ddfed32f7..99097137f73638f8e7f32ababb4f163a39574bb3 100644
--- a/third_party/WebKit/Source/core/fileapi/Blob.h
+++ b/third_party/WebKit/Source/core/fileapi/Blob.h
@@ -48,6 +48,7 @@ namespace blink {
class BlobPropertyBag;
class ExceptionState;
class ExecutionContext;
+class ScriptState;
class CORE_EXPORT Blob : public GarbageCollectedFinalized<Blob>,
public ScriptWrappable,
@@ -98,7 +99,7 @@ class CORE_EXPORT Blob : public GarbageCollectedFinalized<Blob>,
return slice(start, end, String(), exceptionState);
}
- virtual void close(ExecutionContext*, ExceptionState&);
+ virtual void close(ScriptState*, ExceptionState&);
String type() const { return m_blobDataHandle->type(); }
String uuid() const { return m_blobDataHandle->uuid(); }
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/fileapi/Blob.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698