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