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

Side by Side Diff: Source/core/page/FrameView.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
« no previous file with comments | « Source/core/page/FrameView.h ('k') | Source/core/page/History.h » ('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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 #include "RenderIFrame.h" 57 #include "RenderIFrame.h"
58 #include "RenderLayer.h" 58 #include "RenderLayer.h"
59 #include "RenderLayerBacking.h" 59 #include "RenderLayerBacking.h"
60 #include "RenderLayerCompositor.h" 60 #include "RenderLayerCompositor.h"
61 #include "RenderPart.h" 61 #include "RenderPart.h"
62 #include "RenderScrollbar.h" 62 #include "RenderScrollbar.h"
63 #include "RenderScrollbarPart.h" 63 #include "RenderScrollbarPart.h"
64 #include "RenderStyle.h" 64 #include "RenderStyle.h"
65 #include "RenderTheme.h" 65 #include "RenderTheme.h"
66 #include "RenderView.h" 66 #include "RenderView.h"
67 #include "ScrollAnimator.h"
68 #include "ScrollingCoordinator.h" 67 #include "ScrollingCoordinator.h"
69 #include "Settings.h" 68 #include "Settings.h"
70 #include "StyleResolver.h" 69 #include "StyleResolver.h"
71 #include "TextAutosizer.h" 70 #include "TextAutosizer.h"
72 #include "TextResourceDecoder.h" 71 #include "TextResourceDecoder.h"
73 #include "core/accessibility/AXObjectCache.h" 72 #include "core/accessibility/AXObjectCache.h"
73 #include "core/platform/ScrollAnimator.h"
74 #include "core/platform/graphics/FloatRect.h" 74 #include "core/platform/graphics/FloatRect.h"
75 #include "core/platform/graphics/FontCache.h" 75 #include "core/platform/graphics/FontCache.h"
76 #include "core/platform/graphics/GraphicsContext.h" 76 #include "core/platform/graphics/GraphicsContext.h"
77 #include "core/platform/text/TextStream.h" 77 #include "core/platform/text/TextStream.h"
78 78
79 #include <wtf/CurrentTime.h> 79 #include <wtf/CurrentTime.h>
80 #include <wtf/TemporaryChange.h> 80 #include <wtf/TemporaryChange.h>
81 #include <wtf/UnusedParam.h> 81 #include <wtf/UnusedParam.h>
82 82
83 #if ENABLE(SVG) 83 #if ENABLE(SVG)
(...skipping 3461 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/FrameView.h ('k') | Source/core/page/History.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698