OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 28 matching lines...) Expand all Loading... |
39 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
40 | 40 |
41 namespace blink { | 41 namespace blink { |
42 | 42 |
43 class Blob; | 43 class Blob; |
44 class DataObjectItem; | 44 class DataObjectItem; |
45 class DataTransfer; | 45 class DataTransfer; |
46 class StringCallback; | 46 class StringCallback; |
47 class ExecutionContext; | 47 class ExecutionContext; |
48 | 48 |
49 class CORE_EXPORT DataTransferItem final : public RefCountedWillBeGarbageCollect
ed<DataTransferItem>, public ScriptWrappable { | 49 class CORE_EXPORT DataTransferItem final : public GarbageCollected<DataTransferI
tem>, public ScriptWrappable { |
50 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(DataTransferItem); | |
51 DEFINE_WRAPPERTYPEINFO(); | 50 DEFINE_WRAPPERTYPEINFO(); |
52 WTF_MAKE_NONCOPYABLE(DataTransferItem); | 51 WTF_MAKE_NONCOPYABLE(DataTransferItem); |
53 public: | 52 public: |
54 static PassRefPtrWillBeRawPtr<DataTransferItem> create(PassRefPtrWillBeRawPt
r<DataTransfer>, PassRefPtrWillBeRawPtr<DataObjectItem>); | 53 static DataTransferItem* create(DataTransfer*, DataObjectItem*); |
55 | 54 |
56 String kind() const; | 55 String kind() const; |
57 String type() const; | 56 String type() const; |
58 | 57 |
59 void getAsString(ExecutionContext*, StringCallback*) const; | 58 void getAsString(ExecutionContext*, StringCallback*) const; |
60 Blob* getAsFile() const; | 59 Blob* getAsFile() const; |
61 | 60 |
62 DataTransfer* dataTransfer() { return m_dataTransfer.get(); } | 61 DataTransfer* dataTransfer() { return m_dataTransfer.get(); } |
63 DataObjectItem* dataObjectItem() { return m_item.get(); } | 62 DataObjectItem* dataObjectItem() { return m_item.get(); } |
64 | 63 |
65 DECLARE_TRACE(); | 64 DECLARE_TRACE(); |
66 | 65 |
67 private: | 66 private: |
68 DataTransferItem(PassRefPtrWillBeRawPtr<DataTransfer>, PassRefPtrWillBeRawPt
r<DataObjectItem>); | 67 DataTransferItem(DataTransfer*, DataObjectItem*); |
69 | 68 |
70 RefPtrWillBeMember<DataTransfer> m_dataTransfer; | 69 Member<DataTransfer> m_dataTransfer; |
71 RefPtrWillBeMember<DataObjectItem> m_item; | 70 Member<DataObjectItem> m_item; |
72 }; | 71 }; |
73 | 72 |
74 } // namespace blink | 73 } // namespace blink |
75 | 74 |
76 #endif // DataTransferItem_h | 75 #endif // DataTransferItem_h |
OLD | NEW |