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

Side by Side Diff: Source/core/page/FrameView.cpp

Issue 14190004: Absolutify paths to loader/*. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: hmm 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
« no previous file with comments | « Source/core/page/Frame.cpp ('k') | Source/core/page/PageSerializer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999 Lars Knoll <knoll@kde.org> 3 * 1999 Lars Knoll <knoll@kde.org>
4 * 1999 Antti Koivisto <koivisto@kde.org> 4 * 1999 Antti Koivisto <koivisto@kde.org>
5 * 2000 Dirk Mueller <mueller@kde.org> 5 * 2000 Dirk Mueller <mueller@kde.org>
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com)
8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
9 * Copyright (C) 2009 Google Inc. All rights reserved. 9 * Copyright (C) 2009 Google Inc. All rights reserved.
10 * 10 *
(...skipping 11 matching lines...) Expand all
22 * along with this library; see the file COPYING.LIB. If not, write to 22 * along with this library; see the file COPYING.LIB. If not, write to
23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 * Boston, MA 02110-1301, USA. 24 * Boston, MA 02110-1301, USA.
25 */ 25 */
26 26
27 #include "config.h" 27 #include "config.h"
28 #include "FrameView.h" 28 #include "FrameView.h"
29 29
30 #include "AnimationController.h" 30 #include "AnimationController.h"
31 #include "BackForwardController.h" 31 #include "BackForwardController.h"
32 #include "CachedResourceLoader.h"
33 #include "Chrome.h" 32 #include "Chrome.h"
34 #include "ChromeClient.h" 33 #include "ChromeClient.h"
35 #include "DocumentMarkerController.h" 34 #include "DocumentMarkerController.h"
36 #include "EventHandler.h" 35 #include "EventHandler.h"
37 #include "FocusController.h" 36 #include "FocusController.h"
38 #include "FontLoader.h" 37 #include "FontLoader.h"
39 #include "Frame.h" 38 #include "Frame.h"
40 #include "FrameActionScheduler.h" 39 #include "FrameActionScheduler.h"
41 #include "FrameSelection.h" 40 #include "FrameSelection.h"
42 #include "FrameTree.h" 41 #include "FrameTree.h"
43 #include "HTMLDocument.h" 42 #include "HTMLDocument.h"
44 #include "HTMLFrameElement.h" 43 #include "HTMLFrameElement.h"
45 #include "HTMLFrameSetElement.h" 44 #include "HTMLFrameSetElement.h"
46 #include "HTMLNames.h" 45 #include "HTMLNames.h"
47 #include "HTMLPlugInImageElement.h" 46 #include "HTMLPlugInImageElement.h"
48 #include "InspectorClient.h" 47 #include "InspectorClient.h"
49 #include "InspectorController.h" 48 #include "InspectorController.h"
50 #include "InspectorInstrumentation.h" 49 #include "InspectorInstrumentation.h"
51 #include "OverflowEvent.h" 50 #include "OverflowEvent.h"
52 #include "ScrollingCoordinator.h" 51 #include "ScrollingCoordinator.h"
53 #include "Settings.h" 52 #include "Settings.h"
54 #include "StyleResolver.h" 53 #include "StyleResolver.h"
55 #include "core/accessibility/AXObjectCache.h" 54 #include "core/accessibility/AXObjectCache.h"
56 #include "core/loader/FrameLoader.h" 55 #include "core/loader/FrameLoader.h"
57 #include "core/loader/FrameLoaderClient.h" 56 #include "core/loader/FrameLoaderClient.h"
58 #include "core/loader/TextResourceDecoder.h" 57 #include "core/loader/TextResourceDecoder.h"
58 #include "core/loader/cache/CachedResourceLoader.h"
59 #include "core/platform/ScrollAnimator.h" 59 #include "core/platform/ScrollAnimator.h"
60 #include "core/platform/graphics/FloatRect.h" 60 #include "core/platform/graphics/FloatRect.h"
61 #include "core/platform/graphics/FontCache.h" 61 #include "core/platform/graphics/FontCache.h"
62 #include "core/platform/graphics/GraphicsContext.h" 62 #include "core/platform/graphics/GraphicsContext.h"
63 #include "core/platform/text/TextStream.h" 63 #include "core/platform/text/TextStream.h"
64 #include "core/rendering/RenderArena.h" 64 #include "core/rendering/RenderArena.h"
65 #include "core/rendering/RenderEmbeddedObject.h" 65 #include "core/rendering/RenderEmbeddedObject.h"
66 #include "core/rendering/RenderFullScreen.h" 66 #include "core/rendering/RenderFullScreen.h"
67 #include "core/rendering/RenderIFrame.h" 67 #include "core/rendering/RenderIFrame.h"
68 #include "core/rendering/RenderLayer.h" 68 #include "core/rendering/RenderLayer.h"
(...skipping 3476 matching lines...) Expand 10 before | Expand all | Expand 10 after
3545 } 3545 }
3546 3546
3547 AXObjectCache* FrameView::axObjectCache() const 3547 AXObjectCache* FrameView::axObjectCache() const
3548 { 3548 {
3549 if (frame() && frame()->document()) 3549 if (frame() && frame()->document())
3550 return frame()->document()->existingAXObjectCache(); 3550 return frame()->document()->existingAXObjectCache();
3551 return 0; 3551 return 0;
3552 } 3552 }
3553 3553
3554 } // namespace WebCore 3554 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/Frame.cpp ('k') | Source/core/page/PageSerializer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698