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

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

Issue 14358030: Absolutify paths to history/, xml/parser/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "AsyncFileSystemChromium.h" 76 #include "AsyncFileSystemChromium.h"
77 #include "BackForwardController.h"
78 #include "DOMFileSystem.h" 77 #include "DOMFileSystem.h"
79 #include "DOMUtilitiesPrivate.h" 78 #include "DOMUtilitiesPrivate.h"
80 #include "DOMWrapperWorld.h" 79 #include "DOMWrapperWorld.h"
81 #include "DirectoryEntry.h" 80 #include "DirectoryEntry.h"
82 #include "Document.h" 81 #include "Document.h"
83 #include "DocumentMarker.h" 82 #include "DocumentMarker.h"
84 #include "DocumentMarkerController.h" 83 #include "DocumentMarkerController.h"
85 #include "EventListenerWrapper.h" 84 #include "EventListenerWrapper.h"
86 #include "FileEntry.h" 85 #include "FileEntry.h"
87 #include "FileSystemType.h" 86 #include "FileSystemType.h"
88 #include "FindInPageCoordinates.h" 87 #include "FindInPageCoordinates.h"
89 #include "HTMLCollection.h" 88 #include "HTMLCollection.h"
90 #include "HTMLFormElement.h" 89 #include "HTMLFormElement.h"
91 #include "HTMLFrameOwnerElement.h" 90 #include "HTMLFrameOwnerElement.h"
92 #include "HTMLHeadElement.h" 91 #include "HTMLHeadElement.h"
93 #include "HTMLInputElement.h" 92 #include "HTMLInputElement.h"
94 #include "HTMLLinkElement.h" 93 #include "HTMLLinkElement.h"
95 #include "HTMLNames.h" 94 #include "HTMLNames.h"
96 #include "HistoryItem.h"
97 #include "IconURL.h" 95 #include "IconURL.h"
98 #include "InspectorController.h" 96 #include "InspectorController.h"
99 #include "MessagePort.h" 97 #include "MessagePort.h"
100 #include "Node.h" 98 #include "Node.h"
101 #include "NodeTraversal.h" 99 #include "NodeTraversal.h"
102 #include "PageOverlay.h" 100 #include "PageOverlay.h"
103 #include "PlatformMessagePortChannelChromium.h" 101 #include "PlatformMessagePortChannelChromium.h"
104 #include "PluginDocument.h" 102 #include "PluginDocument.h"
105 #include "ScriptCallStack.h" 103 #include "ScriptCallStack.h"
106 #include "ScriptController.h" 104 #include "ScriptController.h"
(...skipping 29 matching lines...) Expand all
136 #include "WebSerializedScriptValue.h" 134 #include "WebSerializedScriptValue.h"
137 #include "WebViewImpl.h" 135 #include "WebViewImpl.h"
138 #include "XPathResult.h" 136 #include "XPathResult.h"
139 #include "core/editing/Editor.h" 137 #include "core/editing/Editor.h"
140 #include "core/editing/FrameSelection.h" 138 #include "core/editing/FrameSelection.h"
141 #include "core/editing/SpellChecker.h" 139 #include "core/editing/SpellChecker.h"
142 #include "core/editing/TextAffinity.h" 140 #include "core/editing/TextAffinity.h"
143 #include "core/editing/TextIterator.h" 141 #include "core/editing/TextIterator.h"
144 #include "core/editing/htmlediting.h" 142 #include "core/editing/htmlediting.h"
145 #include "core/editing/markup.h" 143 #include "core/editing/markup.h"
144 #include "core/history/BackForwardController.h"
145 #include "core/history/HistoryItem.h"
146 #include "core/loader/DocumentLoader.h" 146 #include "core/loader/DocumentLoader.h"
147 #include "core/loader/FormState.h" 147 #include "core/loader/FormState.h"
148 #include "core/loader/FrameLoadRequest.h" 148 #include "core/loader/FrameLoadRequest.h"
149 #include "core/loader/FrameLoader.h" 149 #include "core/loader/FrameLoader.h"
150 #include "core/loader/SubstituteData.h" 150 #include "core/loader/SubstituteData.h"
151 #include "core/page/Chrome.h" 151 #include "core/page/Chrome.h"
152 #include "core/page/Console.h" 152 #include "core/page/Console.h"
153 #include "core/page/DOMWindow.h" 153 #include "core/page/DOMWindow.h"
154 #include "core/page/EventHandler.h" 154 #include "core/page/EventHandler.h"
155 #include "core/page/FocusController.h" 155 #include "core/page/FocusController.h"
(...skipping 2347 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/FrameLoaderClientImpl.cpp ('k') | Source/WebKit/chromium/src/WebHistoryItem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698