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

Side by Side Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 2293493003: Move blink platform's JSON code into a directory. (Closed)
Patch Set: Created 4 years, 3 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
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 #include "core/page/scrolling/ScrollingCoordinator.h" 86 #include "core/page/scrolling/ScrollingCoordinator.h"
87 #include "core/paint/FramePainter.h" 87 #include "core/paint/FramePainter.h"
88 #include "core/paint/PaintLayer.h" 88 #include "core/paint/PaintLayer.h"
89 #include "core/paint/PrePaintTreeWalk.h" 89 #include "core/paint/PrePaintTreeWalk.h"
90 #include "core/plugins/PluginView.h" 90 #include "core/plugins/PluginView.h"
91 #include "core/style/ComputedStyle.h" 91 #include "core/style/ComputedStyle.h"
92 #include "core/svg/SVGDocumentExtensions.h" 92 #include "core/svg/SVGDocumentExtensions.h"
93 #include "core/svg/SVGSVGElement.h" 93 #include "core/svg/SVGSVGElement.h"
94 #include "platform/Histogram.h" 94 #include "platform/Histogram.h"
95 #include "platform/HostWindow.h" 95 #include "platform/HostWindow.h"
96 #include "platform/JSONValues.h"
97 #include "platform/RuntimeEnabledFeatures.h" 96 #include "platform/RuntimeEnabledFeatures.h"
98 #include "platform/ScriptForbiddenScope.h" 97 #include "platform/ScriptForbiddenScope.h"
99 #include "platform/TraceEvent.h" 98 #include "platform/TraceEvent.h"
100 #include "platform/TracedValue.h" 99 #include "platform/TracedValue.h"
101 #include "platform/fonts/FontCache.h" 100 #include "platform/fonts/FontCache.h"
102 #include "platform/geometry/DoubleRect.h" 101 #include "platform/geometry/DoubleRect.h"
103 #include "platform/geometry/FloatRect.h" 102 #include "platform/geometry/FloatRect.h"
104 #include "platform/geometry/LayoutRect.h" 103 #include "platform/geometry/LayoutRect.h"
105 #include "platform/graphics/GraphicsContext.h" 104 #include "platform/graphics/GraphicsContext.h"
106 #include "platform/graphics/GraphicsLayer.h" 105 #include "platform/graphics/GraphicsLayer.h"
107 #include "platform/graphics/GraphicsLayerDebugInfo.h" 106 #include "platform/graphics/GraphicsLayerDebugInfo.h"
108 #include "platform/graphics/paint/CullRect.h" 107 #include "platform/graphics/paint/CullRect.h"
109 #include "platform/graphics/paint/PaintController.h" 108 #include "platform/graphics/paint/PaintController.h"
110 #include "platform/graphics/paint/ScopedPaintChunkProperties.h" 109 #include "platform/graphics/paint/ScopedPaintChunkProperties.h"
110 #include "platform/json/JSONValues.h"
111 #include "platform/scheduler/CancellableTaskFactory.h" 111 #include "platform/scheduler/CancellableTaskFactory.h"
112 #include "platform/scroll/ScrollAnimatorBase.h" 112 #include "platform/scroll/ScrollAnimatorBase.h"
113 #include "platform/scroll/ScrollbarTheme.h" 113 #include "platform/scroll/ScrollbarTheme.h"
114 #include "platform/text/TextStream.h" 114 #include "platform/text/TextStream.h"
115 #include "public/platform/WebDisplayItemList.h" 115 #include "public/platform/WebDisplayItemList.h"
116 #include "public/platform/WebFrameScheduler.h" 116 #include "public/platform/WebFrameScheduler.h"
117 #include "wtf/CurrentTime.h" 117 #include "wtf/CurrentTime.h"
118 #include "wtf/PtrUtil.h" 118 #include "wtf/PtrUtil.h"
119 #include "wtf/StdLibExtras.h" 119 #include "wtf/StdLibExtras.h"
120 #include <memory> 120 #include <memory>
(...skipping 4201 matching lines...) Expand 10 before | Expand all | Expand 10 after
4322 } 4322 }
4323 4323
4324 bool FrameView::canThrottleRendering() const 4324 bool FrameView::canThrottleRendering() const
4325 { 4325 {
4326 if (!RuntimeEnabledFeatures::renderingPipelineThrottlingEnabled()) 4326 if (!RuntimeEnabledFeatures::renderingPipelineThrottlingEnabled())
4327 return false; 4327 return false;
4328 return m_subtreeThrottled || (m_hiddenForThrottling && m_crossOriginForThrot tling); 4328 return m_subtreeThrottled || (m_hiddenForThrottling && m_crossOriginForThrot tling);
4329 } 4329 }
4330 4330
4331 } // namespace blink 4331 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/bindings/core/v8/JSONValuesForV8.h ('k') | third_party/WebKit/Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698