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

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

Issue 14383019: Absolutify paths to modules/*, part 1. (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 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 "DOMFileSystem.h"
78 #include "DOMUtilitiesPrivate.h" 77 #include "DOMUtilitiesPrivate.h"
79 #include "DOMWrapperWorld.h" 78 #include "DOMWrapperWorld.h"
80 #include "DirectoryEntry.h"
81 #include "EventListenerWrapper.h" 79 #include "EventListenerWrapper.h"
82 #include "FileEntry.h"
83 #include "FileSystemType.h"
84 #include "FindInPageCoordinates.h" 80 #include "FindInPageCoordinates.h"
85 #include "HTMLCollection.h" 81 #include "HTMLCollection.h"
86 #include "HTMLFormElement.h" 82 #include "HTMLFormElement.h"
87 #include "HTMLFrameOwnerElement.h" 83 #include "HTMLFrameOwnerElement.h"
88 #include "HTMLHeadElement.h" 84 #include "HTMLHeadElement.h"
89 #include "HTMLInputElement.h" 85 #include "HTMLInputElement.h"
90 #include "HTMLLinkElement.h" 86 #include "HTMLLinkElement.h"
91 #include "HTMLNames.h" 87 #include "HTMLNames.h"
92 #include "PageOverlay.h" 88 #include "PageOverlay.h"
93 #include "PluginDocument.h" 89 #include "PluginDocument.h"
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 #include "core/platform/network/ResourceRequest.h" 167 #include "core/platform/network/ResourceRequest.h"
172 #include "core/rendering/HitTestResult.h" 168 #include "core/rendering/HitTestResult.h"
173 #include "core/rendering/RenderBox.h" 169 #include "core/rendering/RenderBox.h"
174 #include "core/rendering/RenderFrame.h" 170 #include "core/rendering/RenderFrame.h"
175 #include "core/rendering/RenderLayer.h" 171 #include "core/rendering/RenderLayer.h"
176 #include "core/rendering/RenderObject.h" 172 #include "core/rendering/RenderObject.h"
177 #include "core/rendering/RenderTreeAsText.h" 173 #include "core/rendering/RenderTreeAsText.h"
178 #include "core/rendering/RenderView.h" 174 #include "core/rendering/RenderView.h"
179 #include "core/rendering/style/StyleInheritedData.h" 175 #include "core/rendering/style/StyleInheritedData.h"
180 #include "core/xml/XPathResult.h" 176 #include "core/xml/XPathResult.h"
177 #include "modules/filesystem/DOMFileSystem.h"
178 #include "modules/filesystem/DirectoryEntry.h"
179 #include "modules/filesystem/FileEntry.h"
180 #include "modules/filesystem/FileSystemType.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>
188 #include <public/WebRect.h> 188 #include <public/WebRect.h>
189 #include <public/WebSize.h> 189 #include <public/WebSize.h>
190 #include <public/WebURLError.h> 190 #include <public/WebURLError.h>
(...skipping 2312 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.h ('k') | Source/WebKit/chromium/src/WebGeolocationClientMock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698