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

Side by Side Diff: Source/WebKit/chromium/src/WebFrameImpl.cpp

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 #include "config.h" 71 #include "config.h"
72 #include "WebFrameImpl.h" 72 #include "WebFrameImpl.h"
73 73
74 #include <algorithm> 74 #include <algorithm>
75 #include "AssociatedURLLoader.h" 75 #include "AssociatedURLLoader.h"
76 #include "AsyncFileSystemChromium.h" 76 #include "AsyncFileSystemChromium.h"
77 #include "DOMFileSystem.h" 77 #include "DOMFileSystem.h"
78 #include "DOMUtilitiesPrivate.h" 78 #include "DOMUtilitiesPrivate.h"
79 #include "DOMWrapperWorld.h" 79 #include "DOMWrapperWorld.h"
80 #include "DirectoryEntry.h" 80 #include "DirectoryEntry.h"
81 #include "Document.h"
82 #include "DocumentMarker.h"
83 #include "DocumentMarkerController.h"
84 #include "EventListenerWrapper.h" 81 #include "EventListenerWrapper.h"
85 #include "FileEntry.h" 82 #include "FileEntry.h"
86 #include "FileSystemType.h" 83 #include "FileSystemType.h"
87 #include "FindInPageCoordinates.h" 84 #include "FindInPageCoordinates.h"
88 #include "HTMLCollection.h" 85 #include "HTMLCollection.h"
89 #include "HTMLFormElement.h" 86 #include "HTMLFormElement.h"
90 #include "HTMLFrameOwnerElement.h" 87 #include "HTMLFrameOwnerElement.h"
91 #include "HTMLHeadElement.h" 88 #include "HTMLHeadElement.h"
92 #include "HTMLInputElement.h" 89 #include "HTMLInputElement.h"
93 #include "HTMLLinkElement.h" 90 #include "HTMLLinkElement.h"
94 #include "HTMLNames.h" 91 #include "HTMLNames.h"
95 #include "IconURL.h"
96 #include "InspectorController.h" 92 #include "InspectorController.h"
97 #include "MessagePort.h"
98 #include "Node.h"
99 #include "NodeTraversal.h"
100 #include "PageOverlay.h" 93 #include "PageOverlay.h"
101 #include "PlatformMessagePortChannelChromium.h"
102 #include "PluginDocument.h" 94 #include "PluginDocument.h"
103 #include "ScriptCallStack.h" 95 #include "ScriptCallStack.h"
104 #include "ScriptController.h" 96 #include "ScriptController.h"
105 #include "ScriptSourceCode.h" 97 #include "ScriptSourceCode.h"
106 #include "ScriptValue.h" 98 #include "ScriptValue.h"
107 #include "ShadowRoot.h"
108 #include "SkiaUtils.h" 99 #include "SkiaUtils.h"
109 #include "UserGestureIndicator.h"
110 #include "V8DOMFileSystem.h" 100 #include "V8DOMFileSystem.h"
111 #include "V8DirectoryEntry.h" 101 #include "V8DirectoryEntry.h"
112 #include "V8FileEntry.h" 102 #include "V8FileEntry.h"
113 #include "V8GCController.h" 103 #include "V8GCController.h"
114 #include "WebConsoleMessage.h" 104 #include "WebConsoleMessage.h"
115 #include "WebDOMEvent.h" 105 #include "WebDOMEvent.h"
116 #include "WebDOMEventListener.h" 106 #include "WebDOMEventListener.h"
117 #include "WebDataSourceImpl.h" 107 #include "WebDataSourceImpl.h"
118 #include "WebDevToolsAgentPrivate.h" 108 #include "WebDevToolsAgentPrivate.h"
119 #include "WebDocument.h" 109 #include "WebDocument.h"
120 #include "WebFindOptions.h" 110 #include "WebFindOptions.h"
121 #include "WebFormElement.h" 111 #include "WebFormElement.h"
122 #include "WebFrameClient.h" 112 #include "WebFrameClient.h"
123 #include "WebHistoryItem.h" 113 #include "WebHistoryItem.h"
124 #include "WebIconURL.h" 114 #include "WebIconURL.h"
125 #include "WebInputElement.h" 115 #include "WebInputElement.h"
126 #include "WebNode.h" 116 #include "WebNode.h"
127 #include "WebPerformance.h" 117 #include "WebPerformance.h"
128 #include "WebPlugin.h" 118 #include "WebPlugin.h"
129 #include "WebPluginContainerImpl.h" 119 #include "WebPluginContainerImpl.h"
130 #include "WebPrintParams.h" 120 #include "WebPrintParams.h"
131 #include "WebRange.h" 121 #include "WebRange.h"
132 #include "WebScriptSource.h" 122 #include "WebScriptSource.h"
133 #include "WebSecurityOrigin.h" 123 #include "WebSecurityOrigin.h"
134 #include "WebSerializedScriptValue.h" 124 #include "WebSerializedScriptValue.h"
135 #include "WebViewImpl.h" 125 #include "WebViewImpl.h"
136 #include "XPathResult.h" 126 #include "XPathResult.h"
127 #include "core/dom/Document.h"
128 #include "core/dom/DocumentMarker.h"
129 #include "core/dom/DocumentMarkerController.h"
130 #include "core/dom/IconURL.h"
131 #include "core/dom/MessagePort.h"
132 #include "core/dom/Node.h"
133 #include "core/dom/NodeTraversal.h"
134 #include "core/dom/ShadowRoot.h"
135 #include "core/dom/UserGestureIndicator.h"
136 #include "core/dom/default/chromium/PlatformMessagePortChannelChromium.h"
137 #include "core/editing/Editor.h" 137 #include "core/editing/Editor.h"
138 #include "core/editing/FrameSelection.h" 138 #include "core/editing/FrameSelection.h"
139 #include "core/editing/SpellChecker.h" 139 #include "core/editing/SpellChecker.h"
140 #include "core/editing/TextAffinity.h" 140 #include "core/editing/TextAffinity.h"
141 #include "core/editing/TextIterator.h" 141 #include "core/editing/TextIterator.h"
142 #include "core/editing/htmlediting.h" 142 #include "core/editing/htmlediting.h"
143 #include "core/editing/markup.h" 143 #include "core/editing/markup.h"
144 #include "core/history/BackForwardController.h" 144 #include "core/history/BackForwardController.h"
145 #include "core/history/HistoryItem.h" 145 #include "core/history/HistoryItem.h"
146 #include "core/loader/DocumentLoader.h" 146 #include "core/loader/DocumentLoader.h"
(...skipping 2356 matching lines...) Expand 10 before | Expand all | Expand 10 after
2503 2503
2504 // There is a possibility that the frame being detached was the only 2504 // There is a possibility that the frame being detached was the only
2505 // pending one. We need to make sure final replies can be sent. 2505 // pending one. We need to make sure final replies can be sent.
2506 flushCurrentScopingEffort(m_findRequestIdentifier); 2506 flushCurrentScopingEffort(m_findRequestIdentifier);
2507 2507
2508 cancelPendingScopingEffort(); 2508 cancelPendingScopingEffort();
2509 } 2509 }
2510 } 2510 }
2511 2511
2512 } // namespace WebKit 2512 } // namespace WebKit
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698