| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2008, 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (c) 2008, 2009, 2012 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 16 matching lines...) Expand all Loading... |
| 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 #include "core/clipboard/DataObject.h" | 31 #include "core/clipboard/DataObject.h" |
| 32 | 32 |
| 33 #include "core/clipboard/DraggedIsolatedFileSystem.h" | 33 #include "core/clipboard/DraggedIsolatedFileSystem.h" |
| 34 #include "core/clipboard/Pasteboard.h" | 34 #include "core/clipboard/Pasteboard.h" |
| 35 #include "platform/clipboard/ClipboardMimeTypes.h" | 35 #include "platform/clipboard/ClipboardMimeTypes.h" |
| 36 #include "platform/clipboard/ClipboardUtilities.h" | 36 #include "platform/clipboard/ClipboardUtilities.h" |
| 37 #include "platform/wtf/HashSet.h" |
| 37 #include "public/platform/Platform.h" | 38 #include "public/platform/Platform.h" |
| 38 #include "public/platform/WebClipboard.h" | 39 #include "public/platform/WebClipboard.h" |
| 39 #include "public/platform/WebDragData.h" | 40 #include "public/platform/WebDragData.h" |
| 40 #include "wtf/HashSet.h" | |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 DataObject* DataObject::CreateFromPasteboard(PasteMode paste_mode) { | 44 DataObject* DataObject::CreateFromPasteboard(PasteMode paste_mode) { |
| 45 DataObject* data_object = Create(); | 45 DataObject* data_object = Create(); |
| 46 #if DCHECK_IS_ON() | 46 #if DCHECK_IS_ON() |
| 47 HashSet<String> types_seen; | 47 HashSet<String> types_seen; |
| 48 #endif | 48 #endif |
| 49 WebClipboard::Buffer buffer = Pasteboard::GeneralPasteboard()->GetBuffer(); | 49 WebClipboard::Buffer buffer = Pasteboard::GeneralPasteboard()->GetBuffer(); |
| 50 uint64_t sequence_number = | 50 uint64_t sequence_number = |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 } else { | 363 } else { |
| 364 ASSERT_NOT_REACHED(); | 364 ASSERT_NOT_REACHED(); |
| 365 } | 365 } |
| 366 item_list[i] = item; | 366 item_list[i] = item; |
| 367 } | 367 } |
| 368 data.SwapItems(item_list); | 368 data.SwapItems(item_list); |
| 369 return data; | 369 return data; |
| 370 } | 370 } |
| 371 | 371 |
| 372 } // namespace blink | 372 } // namespace blink |
| OLD | NEW |