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

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

Issue 14483003: Absolutify paths to platform/chromium, platform/chromium/support, (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
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" 76 #include "AsyncFileSystem.h"
77 #include "AsyncFileSystemChromium.h" 77 #include "AsyncFileSystemChromium.h"
78 #include "BackForwardController.h" 78 #include "BackForwardController.h"
79 #include "Chrome.h" 79 #include "Chrome.h"
80 #include "ClipboardUtilitiesChromium.h"
81 #include "Console.h" 80 #include "Console.h"
82 #include "DOMFileSystem.h" 81 #include "DOMFileSystem.h"
83 #include "DOMUtilitiesPrivate.h" 82 #include "DOMUtilitiesPrivate.h"
84 #include "DOMWindow.h" 83 #include "DOMWindow.h"
85 #include "DOMWrapperWorld.h" 84 #include "DOMWrapperWorld.h"
86 #include "DirectoryEntry.h" 85 #include "DirectoryEntry.h"
87 #include "Document.h" 86 #include "Document.h"
88 #include "DocumentLoader.h" 87 #include "DocumentLoader.h"
89 #include "DocumentMarker.h" 88 #include "DocumentMarker.h"
90 #include "DocumentMarkerController.h" 89 #include "DocumentMarkerController.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 #include "ScrollbarTheme.h" 138 #include "ScrollbarTheme.h"
140 #include "SecurityPolicy.h" 139 #include "SecurityPolicy.h"
141 #include "Settings.h" 140 #include "Settings.h"
142 #include "ShadowRoot.h" 141 #include "ShadowRoot.h"
143 #include "SkiaUtils.h" 142 #include "SkiaUtils.h"
144 #include "SpellChecker.h" 143 #include "SpellChecker.h"
145 #include "StyleInheritedData.h" 144 #include "StyleInheritedData.h"
146 #include "SubstituteData.h" 145 #include "SubstituteData.h"
147 #include "TextAffinity.h" 146 #include "TextAffinity.h"
148 #include "TextIterator.h" 147 #include "TextIterator.h"
149 #include "TraceEvent.h"
150 #include "UserGestureIndicator.h" 148 #include "UserGestureIndicator.h"
151 #include "V8DOMFileSystem.h" 149 #include "V8DOMFileSystem.h"
152 #include "V8DirectoryEntry.h" 150 #include "V8DirectoryEntry.h"
153 #include "V8FileEntry.h" 151 #include "V8FileEntry.h"
154 #include "V8GCController.h" 152 #include "V8GCController.h"
155 #include "WebConsoleMessage.h" 153 #include "WebConsoleMessage.h"
156 #include "WebDOMEvent.h" 154 #include "WebDOMEvent.h"
157 #include "WebDOMEventListener.h" 155 #include "WebDOMEventListener.h"
158 #include "WebDataSourceImpl.h" 156 #include "WebDataSourceImpl.h"
159 #include "WebDevToolsAgentPrivate.h" 157 #include "WebDevToolsAgentPrivate.h"
160 #include "WebDocument.h" 158 #include "WebDocument.h"
161 #include "WebFindOptions.h" 159 #include "WebFindOptions.h"
162 #include "WebFormElement.h" 160 #include "WebFormElement.h"
163 #include "WebFrameClient.h" 161 #include "WebFrameClient.h"
164 #include "WebHistoryItem.h" 162 #include "WebHistoryItem.h"
165 #include "WebIconURL.h" 163 #include "WebIconURL.h"
166 #include "WebInputElement.h" 164 #include "WebInputElement.h"
167 #include "WebNode.h" 165 #include "WebNode.h"
168 #include "WebPerformance.h" 166 #include "WebPerformance.h"
169 #include "WebPlugin.h" 167 #include "WebPlugin.h"
170 #include "WebPluginContainerImpl.h" 168 #include "WebPluginContainerImpl.h"
171 #include "WebPrintParams.h" 169 #include "WebPrintParams.h"
172 #include "WebRange.h" 170 #include "WebRange.h"
173 #include "WebScriptSource.h" 171 #include "WebScriptSource.h"
174 #include "WebSecurityOrigin.h" 172 #include "WebSecurityOrigin.h"
175 #include "WebSerializedScriptValue.h" 173 #include "WebSerializedScriptValue.h"
176 #include "WebViewImpl.h" 174 #include "WebViewImpl.h"
177 #include "XPathResult.h" 175 #include "XPathResult.h"
176 #include "core/platform/chromium/ClipboardUtilitiesChromium.h"
177 #include "core/platform/chromium/TraceEvent.h"
178 #include "core/platform/graphics/FontCache.h" 178 #include "core/platform/graphics/FontCache.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>
184 #include <public/WebFileSystemType.h> 184 #include <public/WebFileSystemType.h>
185 #include <public/WebFloatPoint.h> 185 #include <public/WebFloatPoint.h>
186 #include <public/WebFloatRect.h> 186 #include <public/WebFloatRect.h>
187 #include <public/WebPoint.h> 187 #include <public/WebPoint.h>
(...skipping 2315 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/WebDragData.cpp ('k') | Source/WebKit/chromium/src/WebGeolocationClientMock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698