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

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

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 // Frame going away causes the FrameLoader to get deleted. In FrameLoader's 66 // Frame going away causes the FrameLoader to get deleted. In FrameLoader's
67 // destructor, it notifies its client with frameLoaderDestroyed. This calls 67 // destructor, it notifies its client with frameLoaderDestroyed. This calls
68 // WebFrame::Closing and then derefs the WebFrame and will cause it to be 68 // WebFrame::Closing and then derefs the WebFrame and will cause it to be
69 // deleted (unless an external someone is also holding a reference). 69 // deleted (unless an external someone is also holding a reference).
70 70
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 "AsyncFileSystem.h"
77 #include "AsyncFileSystemChromium.h" 76 #include "AsyncFileSystemChromium.h"
78 #include "BackForwardController.h" 77 #include "BackForwardController.h"
79 #include "Chrome.h" 78 #include "Chrome.h"
80 #include "Console.h" 79 #include "Console.h"
81 #include "DOMFileSystem.h" 80 #include "DOMFileSystem.h"
82 #include "DOMUtilitiesPrivate.h" 81 #include "DOMUtilitiesPrivate.h"
83 #include "DOMWindow.h" 82 #include "DOMWindow.h"
84 #include "DOMWrapperWorld.h" 83 #include "DOMWrapperWorld.h"
85 #include "DirectoryEntry.h" 84 #include "DirectoryEntry.h"
86 #include "Document.h" 85 #include "Document.h"
(...skipping 17 matching lines...) Expand all
104 #include "HTMLFormElement.h" 103 #include "HTMLFormElement.h"
105 #include "HTMLFrameOwnerElement.h" 104 #include "HTMLFrameOwnerElement.h"
106 #include "HTMLHeadElement.h" 105 #include "HTMLHeadElement.h"
107 #include "HTMLInputElement.h" 106 #include "HTMLInputElement.h"
108 #include "HTMLLinkElement.h" 107 #include "HTMLLinkElement.h"
109 #include "HTMLNames.h" 108 #include "HTMLNames.h"
110 #include "HistoryItem.h" 109 #include "HistoryItem.h"
111 #include "HitTestResult.h" 110 #include "HitTestResult.h"
112 #include "IconURL.h" 111 #include "IconURL.h"
113 #include "InspectorController.h" 112 #include "InspectorController.h"
114 #include "KURL.h"
115 #include "MessagePort.h" 113 #include "MessagePort.h"
116 #include "Node.h" 114 #include "Node.h"
117 #include "NodeTraversal.h" 115 #include "NodeTraversal.h"
118 #include "Page.h" 116 #include "Page.h"
119 #include "PageOverlay.h" 117 #include "PageOverlay.h"
120 #include "Performance.h" 118 #include "Performance.h"
121 #include "PlatformMessagePortChannelChromium.h" 119 #include "PlatformMessagePortChannelChromium.h"
122 #include "PluginDocument.h" 120 #include "PluginDocument.h"
123 #include "PrintContext.h" 121 #include "PrintContext.h"
124 #include "RenderBox.h" 122 #include "RenderBox.h"
125 #include "RenderFrame.h" 123 #include "RenderFrame.h"
126 #include "RenderLayer.h" 124 #include "RenderLayer.h"
127 #include "RenderObject.h" 125 #include "RenderObject.h"
128 #include "RenderTreeAsText.h" 126 #include "RenderTreeAsText.h"
129 #include "RenderView.h" 127 #include "RenderView.h"
130 #include "SchemeRegistry.h"
131 #include "ScriptCallStack.h" 128 #include "ScriptCallStack.h"
132 #include "ScriptController.h" 129 #include "ScriptController.h"
133 #include "ScriptSourceCode.h" 130 #include "ScriptSourceCode.h"
134 #include "ScriptValue.h" 131 #include "ScriptValue.h"
135 #include "ScrollTypes.h"
136 #include "ScrollbarTheme.h"
137 #include "SecurityPolicy.h" 132 #include "SecurityPolicy.h"
138 #include "Settings.h" 133 #include "Settings.h"
139 #include "ShadowRoot.h" 134 #include "ShadowRoot.h"
140 #include "SkiaUtils.h" 135 #include "SkiaUtils.h"
141 #include "SpellChecker.h" 136 #include "SpellChecker.h"
142 #include "StyleInheritedData.h" 137 #include "StyleInheritedData.h"
143 #include "SubstituteData.h" 138 #include "SubstituteData.h"
144 #include "TextAffinity.h" 139 #include "TextAffinity.h"
145 #include "TextIterator.h" 140 #include "TextIterator.h"
146 #include "UserGestureIndicator.h" 141 #include "UserGestureIndicator.h"
(...skipping 17 matching lines...) Expand all
164 #include "WebPerformance.h" 159 #include "WebPerformance.h"
165 #include "WebPlugin.h" 160 #include "WebPlugin.h"
166 #include "WebPluginContainerImpl.h" 161 #include "WebPluginContainerImpl.h"
167 #include "WebPrintParams.h" 162 #include "WebPrintParams.h"
168 #include "WebRange.h" 163 #include "WebRange.h"
169 #include "WebScriptSource.h" 164 #include "WebScriptSource.h"
170 #include "WebSecurityOrigin.h" 165 #include "WebSecurityOrigin.h"
171 #include "WebSerializedScriptValue.h" 166 #include "WebSerializedScriptValue.h"
172 #include "WebViewImpl.h" 167 #include "WebViewImpl.h"
173 #include "XPathResult.h" 168 #include "XPathResult.h"
169 #include "core/platform/AsyncFileSystem.h"
170 #include "core/platform/KURL.h"
171 #include "core/platform/SchemeRegistry.h"
172 #include "core/platform/ScrollTypes.h"
173 #include "core/platform/ScrollbarTheme.h"
174 #include "core/platform/chromium/ClipboardUtilitiesChromium.h" 174 #include "core/platform/chromium/ClipboardUtilitiesChromium.h"
175 #include "core/platform/chromium/TraceEvent.h" 175 #include "core/platform/chromium/TraceEvent.h"
176 #include "core/platform/graphics/FontCache.h" 176 #include "core/platform/graphics/FontCache.h"
177 #include "core/platform/network/ResourceHandle.h" 177 #include "core/platform/network/ResourceHandle.h"
178 #include "core/platform/network/ResourceRequest.h" 178 #include "core/platform/network/ResourceRequest.h"
179 #include "htmlediting.h" 179 #include "htmlediting.h"
180 #include "markup.h" 180 #include "markup.h"
181 #include "painting/GraphicsContextBuilder.h" 181 #include "painting/GraphicsContextBuilder.h"
182 #include <public/Platform.h> 182 #include <public/Platform.h>
183 #include <public/WebFileSystem.h> 183 #include <public/WebFileSystem.h>
(...skipping 2319 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
« no previous file with comments | « Source/WebKit/chromium/src/WebFileSystemCallbacksImpl.cpp ('k') | Source/WebKit/chromium/src/WebHistoryItem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698