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

Side by Side Diff: Source/core/fileapi/Blob.h

Issue 337343002: IDL: make optional arguments (without default) explicit sometimes Base URL: https://chromium.googlesource.com/chromium/blink.git@idl-default-arguments-next
Patch Set: Created 6 years, 4 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 unified diff | Download patch
« no previous file with comments | « Source/core/events/UIEvent.idl ('k') | Source/core/fileapi/Blob.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 13 matching lines...) Expand all
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef Blob_h 31 #ifndef Blob_h
32 #define Blob_h 32 #define Blob_h
33 33
34 #include "bindings/core/v8/Optional.h"
34 #include "bindings/core/v8/ScriptWrappable.h" 35 #include "bindings/core/v8/ScriptWrappable.h"
35 #include "core/html/URLRegistry.h" 36 #include "core/html/URLRegistry.h"
36 #include "platform/blob/BlobData.h" 37 #include "platform/blob/BlobData.h"
37 #include "platform/heap/Handle.h" 38 #include "platform/heap/Handle.h"
38 #include "wtf/PassOwnPtr.h" 39 #include "wtf/PassOwnPtr.h"
39 #include "wtf/PassRefPtr.h" 40 #include "wtf/PassRefPtr.h"
40 #include "wtf/RefCounted.h" 41 #include "wtf/RefCounted.h"
41 #include "wtf/text/WTFString.h" 42 #include "wtf/text/WTFString.h"
42 43
43 namespace blink { 44 namespace blink {
44 45
45 class ExceptionState; 46 class ExceptionState;
46 class ExecutionContext; 47 class ExecutionContext;
47 48
48 class Blob : public RefCountedWillBeGarbageCollectedFinalized<Blob>, public Scri ptWrappable, public URLRegistrable { 49 class Blob : public RefCountedWillBeGarbageCollectedFinalized<Blob>, public Scri ptWrappable, public URLRegistrable {
49 public: 50 public:
50 static PassRefPtrWillBeRawPtr<Blob> create() 51 static PassRefPtrWillBeRawPtr<Blob> create()
51 { 52 {
52 return adoptRefWillBeNoop(new Blob(BlobDataHandle::create())); 53 return adoptRefWillBeNoop(new Blob(BlobDataHandle::create()));
53 } 54 }
54 55
55 static PassRefPtrWillBeRawPtr<Blob> create(PassRefPtr<BlobDataHandle> blobDa taHandle) 56 static PassRefPtrWillBeRawPtr<Blob> create(PassRefPtr<BlobDataHandle> blobDa taHandle)
56 { 57 {
57 return adoptRefWillBeNoop(new Blob(blobDataHandle)); 58 return adoptRefWillBeNoop(new Blob(blobDataHandle));
58 } 59 }
59 60
60 virtual ~Blob(); 61 virtual ~Blob();
61 62
62 virtual unsigned long long size() const { return m_blobDataHandle->size(); } 63 virtual unsigned long long size() const { return m_blobDataHandle->size(); }
63 virtual PassRefPtrWillBeRawPtr<Blob> slice(long long start, long long end, c onst String& contentType, ExceptionState&) const; 64 virtual PassRefPtrWillBeRawPtr<Blob> slice(long long start, Optional<long lo ng> optionalEnd, const String& contentType, ExceptionState&) const;
64
65 // To allow ExceptionState to be passed in last, manually enumerate the opti onal argument overloads.
66 PassRefPtrWillBeRawPtr<Blob> slice(ExceptionState& exceptionState) const
67 {
68 return slice(0, std::numeric_limits<long long>::max(), String(), excepti onState);
69 }
70 PassRefPtrWillBeRawPtr<Blob> slice(long long start, ExceptionState& exceptio nState) const
71 {
72 return slice(start, std::numeric_limits<long long>::max(), String(), exc eptionState);
73 }
74 PassRefPtrWillBeRawPtr<Blob> slice(long long start, long long end, Exception State& exceptionState) const
75 {
76 return slice(start, end, String(), exceptionState);
77 }
78 65
79 virtual void close(ExecutionContext*, ExceptionState&); 66 virtual void close(ExecutionContext*, ExceptionState&);
80 67
81 String type() const { return m_blobDataHandle->type(); } 68 String type() const { return m_blobDataHandle->type(); }
82 String uuid() const { return m_blobDataHandle->uuid(); } 69 String uuid() const { return m_blobDataHandle->uuid(); }
83 PassRefPtr<BlobDataHandle> blobDataHandle() const { return m_blobDataHandle; } 70 PassRefPtr<BlobDataHandle> blobDataHandle() const { return m_blobDataHandle; }
84 // True for all File instances, including the user-built ones. 71 // True for all File instances, including the user-built ones.
85 virtual bool isFile() const { return false; } 72 virtual bool isFile() const { return false; }
86 // Only true for File instances that are backed by platform files. 73 // Only true for File instances that are backed by platform files.
87 virtual bool hasBackingFile() const { return false; } 74 virtual bool hasBackingFile() const { return false; }
(...skipping 14 matching lines...) Expand all
102 private: 89 private:
103 Blob(); 90 Blob();
104 91
105 RefPtr<BlobDataHandle> m_blobDataHandle; 92 RefPtr<BlobDataHandle> m_blobDataHandle;
106 bool m_hasBeenClosed; 93 bool m_hasBeenClosed;
107 }; 94 };
108 95
109 } // namespace blink 96 } // namespace blink
110 97
111 #endif // Blob_h 98 #endif // Blob_h
OLDNEW
« no previous file with comments | « Source/core/events/UIEvent.idl ('k') | Source/core/fileapi/Blob.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698