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

Side by Side Diff: Source/core/platform/chromium/ClipboardChromium.cpp

Issue 15447002: Remove ~1750 superfluous includes from core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase a few hours Created 7 years, 7 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) 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2008, 2009 Google Inc. 3 * Copyright (C) 2008, 2009 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 14 matching lines...) Expand all
25 */ 25 */
26 26
27 #include "config.h" 27 #include "config.h"
28 #include "core/platform/chromium/ClipboardChromium.h" 28 #include "core/platform/chromium/ClipboardChromium.h"
29 29
30 #include "HTMLNames.h" 30 #include "HTMLNames.h"
31 #include "core/dom/DataTransferItemList.h" 31 #include "core/dom/DataTransferItemList.h"
32 #include "core/dom/Document.h" 32 #include "core/dom/Document.h"
33 #include "core/dom/Element.h" 33 #include "core/dom/Element.h"
34 #include "core/dom/ExceptionCode.h" 34 #include "core/dom/ExceptionCode.h"
35 #include "core/dom/NamedNodeMap.h"
36 #include "core/dom/Range.h"
37 #include "core/dom/StringCallback.h" 35 #include "core/dom/StringCallback.h"
38 #include "core/editing/Editor.h" 36 #include "core/editing/Editor.h"
39 #include "core/editing/markup.h" 37 #include "core/editing/markup.h"
40 #include "core/fileapi/File.h" 38 #include "core/fileapi/File.h"
41 #include "core/fileapi/FileList.h" 39 #include "core/fileapi/FileList.h"
42 #include "core/html/parser/HTMLParserIdioms.h"
43 #include "core/loader/cache/CachedImage.h" 40 #include "core/loader/cache/CachedImage.h"
44 #include "core/page/Frame.h" 41 #include "core/page/Frame.h"
45 #include "core/platform/DragData.h" 42 #include "core/platform/DragData.h"
46 #include "core/platform/MIMETypeRegistry.h" 43 #include "core/platform/MIMETypeRegistry.h"
47 #include "core/platform/chromium/ChromiumDataObject.h" 44 #include "core/platform/chromium/ChromiumDataObject.h"
48 #include "core/platform/chromium/ChromiumDataObjectItem.h" 45 #include "core/platform/chromium/ChromiumDataObjectItem.h"
49 #include "core/platform/chromium/ClipboardMimeTypes.h" 46 #include "core/platform/chromium/ClipboardMimeTypes.h"
50 #include "core/platform/chromium/ClipboardUtilitiesChromium.h" 47 #include "core/platform/chromium/ClipboardUtilitiesChromium.h"
51 #include "core/platform/graphics/Image.h" 48 #include "core/platform/graphics/Image.h"
52 #include "core/rendering/RenderImage.h" 49 #include "core/rendering/RenderImage.h"
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 461
465 PassRefPtr<DataTransferItemList> ClipboardChromium::items() 462 PassRefPtr<DataTransferItemList> ClipboardChromium::items()
466 { 463 {
467 // FIXME: According to the spec, we are supposed to return the same collecti on of items each 464 // FIXME: According to the spec, we are supposed to return the same collecti on of items each
468 // time. We now return a wrapper that always wraps the *same* set of items, so JS shouldn't be 465 // time. We now return a wrapper that always wraps the *same* set of items, so JS shouldn't be
469 // able to tell, but we probably still want to fix this. 466 // able to tell, but we probably still want to fix this.
470 return DataTransferItemListPolicyWrapper::create(this, m_dataObject); 467 return DataTransferItemListPolicyWrapper::create(this, m_dataObject);
471 } 468 }
472 469
473 } // namespace WebCore 470 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/platform/chromium/ChromiumDataObjectItem.cpp ('k') | Source/core/platform/chromium/DragDataChromium.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698