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

Side by Side Diff: Source/core/page/FrameView.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
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/core/page/PageConsole.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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
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)
84 #include "RenderSVGRoot.h" 84 #include "RenderSVGRoot.h"
85 #include "SVGDocument.h" 85 #include "SVGDocument.h"
86 #include "SVGSVGElement.h" 86 #include "SVGSVGElement.h"
87 #endif 87 #endif
88 88
89 #include "TraceEvent.h" 89 #include "core/platform/chromium/TraceEvent.h"
90 90
91 namespace WebCore { 91 namespace WebCore {
92 92
93 using namespace HTMLNames; 93 using namespace HTMLNames;
94 94
95 double FrameView::sCurrentPaintTimeStamp = 0.0; 95 double FrameView::sCurrentPaintTimeStamp = 0.0;
96 96
97 97
98 // REPAINT_THROTTLING now chooses default values for throttling parameters. 98 // REPAINT_THROTTLING now chooses default values for throttling parameters.
99 // Should be removed when applications start using runtime configuration. 99 // Should be removed when applications start using runtime configuration.
(...skipping 3445 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/EventHandler.cpp ('k') | Source/core/page/PageConsole.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698