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

Side by Side Diff: third_party/WebKit/Source/core/page/DragController.cpp

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: rebase Created 3 years, 11 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) 2007, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Google Inc. 3 * Copyright (C) 2008 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 28 matching lines...) Expand all
39 #include "core/dom/Node.h" 39 #include "core/dom/Node.h"
40 #include "core/dom/Text.h" 40 #include "core/dom/Text.h"
41 #include "core/dom/shadow/ShadowRoot.h" 41 #include "core/dom/shadow/ShadowRoot.h"
42 #include "core/editing/DragCaretController.h" 42 #include "core/editing/DragCaretController.h"
43 #include "core/editing/EditingUtilities.h" 43 #include "core/editing/EditingUtilities.h"
44 #include "core/editing/Editor.h" 44 #include "core/editing/Editor.h"
45 #include "core/editing/FrameSelection.h" 45 #include "core/editing/FrameSelection.h"
46 #include "core/editing/commands/DragAndDropCommand.h" 46 #include "core/editing/commands/DragAndDropCommand.h"
47 #include "core/editing/serializers/Serialization.h" 47 #include "core/editing/serializers/Serialization.h"
48 #include "core/events/TextEvent.h" 48 #include "core/events/TextEvent.h"
49 #include "core/fetch/ResourceFetcher.h"
50 #include "core/frame/FrameHost.h" 49 #include "core/frame/FrameHost.h"
51 #include "core/frame/FrameView.h" 50 #include "core/frame/FrameView.h"
52 #include "core/frame/LocalFrame.h" 51 #include "core/frame/LocalFrame.h"
53 #include "core/frame/Settings.h" 52 #include "core/frame/Settings.h"
54 #include "core/html/HTMLAnchorElement.h" 53 #include "core/html/HTMLAnchorElement.h"
55 #include "core/html/HTMLFormElement.h" 54 #include "core/html/HTMLFormElement.h"
56 #include "core/html/HTMLInputElement.h" 55 #include "core/html/HTMLInputElement.h"
57 #include "core/html/HTMLPlugInElement.h" 56 #include "core/html/HTMLPlugInElement.h"
58 #include "core/input/EventHandler.h" 57 #include "core/input/EventHandler.h"
59 #include "core/layout/HitTestRequest.h" 58 #include "core/layout/HitTestRequest.h"
(...skipping 10 matching lines...) Expand all
70 #include "core/page/DragState.h" 69 #include "core/page/DragState.h"
71 #include "core/page/Page.h" 70 #include "core/page/Page.h"
72 #include "core/svg/graphics/SVGImageForContainer.h" 71 #include "core/svg/graphics/SVGImageForContainer.h"
73 #include "platform/DragImage.h" 72 #include "platform/DragImage.h"
74 #include "platform/SharedBuffer.h" 73 #include "platform/SharedBuffer.h"
75 #include "platform/geometry/IntRect.h" 74 #include "platform/geometry/IntRect.h"
76 #include "platform/geometry/IntSize.h" 75 #include "platform/geometry/IntSize.h"
77 #include "platform/graphics/BitmapImage.h" 76 #include "platform/graphics/BitmapImage.h"
78 #include "platform/graphics/Image.h" 77 #include "platform/graphics/Image.h"
79 #include "platform/graphics/ImageOrientation.h" 78 #include "platform/graphics/ImageOrientation.h"
79 #include "platform/loader/fetch/ResourceFetcher.h"
80 #include "platform/network/ResourceRequest.h" 80 #include "platform/network/ResourceRequest.h"
81 #include "platform/weborigin/SecurityOrigin.h" 81 #include "platform/weborigin/SecurityOrigin.h"
82 #include "public/platform/WebCommon.h" 82 #include "public/platform/WebCommon.h"
83 #include "public/platform/WebDragData.h" 83 #include "public/platform/WebDragData.h"
84 #include "public/platform/WebDragOperation.h" 84 #include "public/platform/WebDragOperation.h"
85 #include "public/platform/WebImage.h" 85 #include "public/platform/WebImage.h"
86 #include "public/platform/WebPoint.h" 86 #include "public/platform/WebPoint.h"
87 #include "public/platform/WebScreenInfo.h" 87 #include "public/platform/WebScreenInfo.h"
88 #include "wtf/Assertions.h" 88 #include "wtf/Assertions.h"
89 #include "wtf/CurrentTime.h" 89 #include "wtf/CurrentTime.h"
(...skipping 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after
1224 } 1224 }
1225 1225
1226 DEFINE_TRACE(DragController) { 1226 DEFINE_TRACE(DragController) {
1227 visitor->trace(m_page); 1227 visitor->trace(m_page);
1228 visitor->trace(m_documentUnderMouse); 1228 visitor->trace(m_documentUnderMouse);
1229 visitor->trace(m_dragInitiator); 1229 visitor->trace(m_dragInitiator);
1230 visitor->trace(m_fileInputElementUnderMouse); 1230 visitor->trace(m_fileInputElementUnderMouse);
1231 } 1231 }
1232 1232
1233 } // namespace blink 1233 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698