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

Side by Side Diff: public/platform/WebBlobData.h

Issue 1162773003: [Blob] Dependencies for blob storage testing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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
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 30 matching lines...) Expand all
41 namespace WTF { template <typename T> class PassOwnPtr; } 41 namespace WTF { template <typename T> class PassOwnPtr; }
42 #endif 42 #endif
43 43
44 namespace blink { 44 namespace blink {
45 45
46 class BlobData; 46 class BlobData;
47 47
48 class WebBlobData : public WebNonCopyable { 48 class WebBlobData : public WebNonCopyable {
49 public: 49 public:
50 struct Item { 50 struct Item {
51 enum { TypeData, TypeFile, TypeBlob, TypeFileSystemURL } type; 51 enum Type { TypeData, TypeFile, TypeBlob, TypeFileSystemURL } type;
jsbell 2015/06/02 19:30:56 Why introduce an enum name here?
dmurph 2015/06/02 20:17:41 I want to be able to use this type as a return typ
52 WebThreadSafeData data; 52 WebThreadSafeData data;
53 WebString blobUUID; 53 WebString blobUUID;
54 WebString filePath; 54 WebString filePath;
55 WebURL fileSystemURL; 55 WebURL fileSystemURL;
56 long long offset; 56 long long offset;
57 long long length; // -1 means go to the end of the file/blob. 57 long long length; // -1 means go to the end of the file/blob.
58 double expectedModificationTime; // 0.0 means that the time is not set. 58 double expectedModificationTime; // 0.0 means that the time is not set.
59 }; 59 };
60 60
61 BLINK_PLATFORM_EXPORT WebBlobData(); 61 BLINK_PLATFORM_EXPORT WebBlobData();
62 BLINK_PLATFORM_EXPORT ~WebBlobData(); 62 BLINK_PLATFORM_EXPORT ~WebBlobData();
63 63
64 bool isNull() const { return !m_private.get(); } 64 bool isNull() const { return !m_private.get(); }
65 65
66 // Returns the number of items. 66 // Returns the number of items.
67 BLINK_PLATFORM_EXPORT size_t itemCount() const; 67 BLINK_PLATFORM_EXPORT size_t itemCount() const;
68 68
69 // Retrieves the values of the item at the given index. Returns false if 69 // Retrieves the values of the item at the given index. Returns false if
70 // index is out of bounds. 70 // index is out of bounds.
71 // This call is single use only per index. The memory ownership is
72 // transfered to the result in the case of memory items. A second call with
73 // the same index will result in null data.
jsbell 2015/06/02 19:30:56 Maybe amend with a TODO to rework the API?
dmurph 2015/06/02 20:17:41 Done.
71 BLINK_PLATFORM_EXPORT bool itemAt(size_t index, Item& result) const; 74 BLINK_PLATFORM_EXPORT bool itemAt(size_t index, Item& result) const;
72 75
73 BLINK_PLATFORM_EXPORT WebString contentType() const; 76 BLINK_PLATFORM_EXPORT WebString contentType() const;
74 77
75 #if INSIDE_BLINK 78 #if INSIDE_BLINK
76 BLINK_PLATFORM_EXPORT WebBlobData(const WTF::PassOwnPtr<BlobData>&); 79 BLINK_PLATFORM_EXPORT WebBlobData(const WTF::PassOwnPtr<BlobData>&);
77 BLINK_PLATFORM_EXPORT WebBlobData& operator=(const WTF::PassOwnPtr<BlobData> &); 80 BLINK_PLATFORM_EXPORT WebBlobData& operator=(const WTF::PassOwnPtr<BlobData> &);
78 BLINK_PLATFORM_EXPORT operator WTF::PassOwnPtr<BlobData>(); 81 BLINK_PLATFORM_EXPORT operator WTF::PassOwnPtr<BlobData>();
79 #endif 82 #endif
80 83
81 private: 84 private:
82 WebPrivateOwnPtr<BlobData> m_private; 85 WebPrivateOwnPtr<BlobData> m_private;
83 }; 86 };
84 87
85 } // namespace blink 88 } // namespace blink
86 89
87 #endif // WebBlobData_h 90 #endif // WebBlobData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698