| 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 17 matching lines...) Expand all Loading... |
| 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 DataTransferItem_h | 31 #ifndef DataTransferItem_h |
| 32 #define DataTransferItem_h | 32 #define DataTransferItem_h |
| 33 | 33 |
| 34 #include "bindings/core/v8/ScriptWrappable.h" | 34 #include "bindings/core/v8/ScriptWrappable.h" |
| 35 #include "core/CoreExport.h" | 35 #include "core/CoreExport.h" |
| 36 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
| 37 #include "wtf/Forward.h" | 37 #include "wtf/Forward.h" |
| 38 #include "wtf/RefCounted.h" | |
| 39 #include "wtf/RefPtr.h" | |
| 40 | 38 |
| 41 namespace blink { | 39 namespace blink { |
| 42 | 40 |
| 43 class Blob; | 41 class Blob; |
| 44 class DataObjectItem; | 42 class DataObjectItem; |
| 45 class DataTransfer; | 43 class DataTransfer; |
| 46 class StringCallback; | 44 class StringCallback; |
| 47 class ExecutionContext; | 45 class ExecutionContext; |
| 48 | 46 |
| 49 class CORE_EXPORT DataTransferItem final : public GarbageCollected<DataTransferI
tem>, public ScriptWrappable { | 47 class CORE_EXPORT DataTransferItem final : public GarbageCollected<DataTransferI
tem>, public ScriptWrappable { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 66 private: | 64 private: |
| 67 DataTransferItem(DataTransfer*, DataObjectItem*); | 65 DataTransferItem(DataTransfer*, DataObjectItem*); |
| 68 | 66 |
| 69 Member<DataTransfer> m_dataTransfer; | 67 Member<DataTransfer> m_dataTransfer; |
| 70 Member<DataObjectItem> m_item; | 68 Member<DataObjectItem> m_item; |
| 71 }; | 69 }; |
| 72 | 70 |
| 73 } // namespace blink | 71 } // namespace blink |
| 74 | 72 |
| 75 #endif // DataTransferItem_h | 73 #endif // DataTransferItem_h |
| OLD | NEW |