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

Side by Side Diff: third_party/WebKit/Source/core/editing/Editor.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) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 #include "core/editing/commands/TypingCommand.h" 55 #include "core/editing/commands/TypingCommand.h"
56 #include "core/editing/commands/UndoStack.h" 56 #include "core/editing/commands/UndoStack.h"
57 #include "core/editing/iterators/SearchBuffer.h" 57 #include "core/editing/iterators/SearchBuffer.h"
58 #include "core/editing/markers/DocumentMarkerController.h" 58 #include "core/editing/markers/DocumentMarkerController.h"
59 #include "core/editing/serializers/Serialization.h" 59 #include "core/editing/serializers/Serialization.h"
60 #include "core/editing/spellcheck/SpellChecker.h" 60 #include "core/editing/spellcheck/SpellChecker.h"
61 #include "core/events/ClipboardEvent.h" 61 #include "core/events/ClipboardEvent.h"
62 #include "core/events/KeyboardEvent.h" 62 #include "core/events/KeyboardEvent.h"
63 #include "core/events/ScopedEventQueue.h" 63 #include "core/events/ScopedEventQueue.h"
64 #include "core/events/TextEvent.h" 64 #include "core/events/TextEvent.h"
65 #include "core/fetch/ResourceFetcher.h"
66 #include "core/frame/FrameView.h" 65 #include "core/frame/FrameView.h"
67 #include "core/frame/LocalFrame.h" 66 #include "core/frame/LocalFrame.h"
68 #include "core/frame/Settings.h" 67 #include "core/frame/Settings.h"
69 #include "core/frame/UseCounter.h" 68 #include "core/frame/UseCounter.h"
70 #include "core/html/HTMLBodyElement.h" 69 #include "core/html/HTMLBodyElement.h"
71 #include "core/html/HTMLCanvasElement.h" 70 #include "core/html/HTMLCanvasElement.h"
72 #include "core/html/HTMLHtmlElement.h" 71 #include "core/html/HTMLHtmlElement.h"
73 #include "core/html/HTMLImageElement.h" 72 #include "core/html/HTMLImageElement.h"
74 #include "core/html/HTMLInputElement.h" 73 #include "core/html/HTMLInputElement.h"
75 #include "core/html/HTMLTextAreaElement.h" 74 #include "core/html/HTMLTextAreaElement.h"
76 #include "core/html/parser/HTMLParserIdioms.h" 75 #include "core/html/parser/HTMLParserIdioms.h"
77 #include "core/input/EventHandler.h" 76 #include "core/input/EventHandler.h"
78 #include "core/inspector/ConsoleMessage.h" 77 #include "core/inspector/ConsoleMessage.h"
79 #include "core/layout/HitTestResult.h" 78 #include "core/layout/HitTestResult.h"
80 #include "core/layout/LayoutImage.h" 79 #include "core/layout/LayoutImage.h"
81 #include "core/loader/EmptyClients.h" 80 #include "core/loader/EmptyClients.h"
82 #include "core/loader/resource/ImageResourceContent.h" 81 #include "core/loader/resource/ImageResourceContent.h"
83 #include "core/page/DragData.h" 82 #include "core/page/DragData.h"
84 #include "core/page/EditorClient.h" 83 #include "core/page/EditorClient.h"
85 #include "core/page/FocusController.h" 84 #include "core/page/FocusController.h"
86 #include "core/page/Page.h" 85 #include "core/page/Page.h"
87 #include "core/svg/SVGImageElement.h" 86 #include "core/svg/SVGImageElement.h"
88 #include "platform/KillRing.h" 87 #include "platform/KillRing.h"
88 #include "platform/loader/fetch/ResourceFetcher.h"
89 #include "platform/weborigin/KURL.h" 89 #include "platform/weborigin/KURL.h"
90 #include "wtf/PtrUtil.h" 90 #include "wtf/PtrUtil.h"
91 #include "wtf/text/CharacterNames.h" 91 #include "wtf/text/CharacterNames.h"
92 92
93 namespace blink { 93 namespace blink {
94 94
95 using namespace HTMLNames; 95 using namespace HTMLNames;
96 using namespace WTF; 96 using namespace WTF;
97 using namespace Unicode; 97 using namespace Unicode;
98 98
(...skipping 1637 matching lines...) Expand 10 before | Expand all | Expand 10 after
1736 } 1736 }
1737 1737
1738 DEFINE_TRACE(Editor) { 1738 DEFINE_TRACE(Editor) {
1739 visitor->trace(m_frame); 1739 visitor->trace(m_frame);
1740 visitor->trace(m_lastEditCommand); 1740 visitor->trace(m_lastEditCommand);
1741 visitor->trace(m_undoStack); 1741 visitor->trace(m_undoStack);
1742 visitor->trace(m_mark); 1742 visitor->trace(m_mark);
1743 } 1743 }
1744 1744
1745 } // namespace blink 1745 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698