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

Side by Side Diff: Source/WebCore/page/FrameView.h

Issue 10391049: Merge 116319 - Unreviewed, rolling out r115525. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
Patch Set: Created 8 years, 7 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
« no previous file with comments | « Source/WebCore/dom/ScriptedAnimationController.cpp ('k') | Source/WebCore/page/FrameView.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) 1997 Martin Jones (mjones@kde.org) 2 Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 (C) 1998 Waldo Bastian (bastian@kde.org) 3 (C) 1998 Waldo Bastian (bastian@kde.org)
4 (C) 1998, 1999 Torben Weis (weis@kde.org) 4 (C) 1998, 1999 Torben Weis (weis@kde.org)
5 (C) 1999 Lars Knoll (knoll@kde.org) 5 (C) 1999 Lars Knoll (knoll@kde.org)
6 (C) 1999 Antti Koivisto (koivisto@kde.org) 6 (C) 1999 Antti Koivisto (koivisto@kde.org)
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
8 8
9 This library is free software; you can redistribute it and/or 9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Library General Public 10 modify it under the terms of the GNU Library General Public
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 RenderObject* layoutRoot(bool onlyDuringLayout = false) const; 105 RenderObject* layoutRoot(bool onlyDuringLayout = false) const;
106 void clearLayoutRoot() { m_layoutRoot = 0; } 106 void clearLayoutRoot() { m_layoutRoot = 0; }
107 int layoutCount() const { return m_layoutCount; } 107 int layoutCount() const { return m_layoutCount; }
108 108
109 bool needsLayout() const; 109 bool needsLayout() const;
110 void setNeedsLayout(); 110 void setNeedsLayout();
111 111
112 bool needsFullRepaint() const { return m_doFullRepaint; } 112 bool needsFullRepaint() const { return m_doFullRepaint; }
113 113
114 #if ENABLE(REQUEST_ANIMATION_FRAME) 114 #if ENABLE(REQUEST_ANIMATION_FRAME)
115 void serviceScriptedAnimations(double monotonicAnimationStartTime); 115 void serviceScriptedAnimations(DOMTimeStamp);
116 #endif 116 #endif
117 117
118 #if USE(ACCELERATED_COMPOSITING) 118 #if USE(ACCELERATED_COMPOSITING)
119 void updateCompositingLayersAfterStyleChange(); 119 void updateCompositingLayersAfterStyleChange();
120 void updateCompositingLayersAfterLayout(); 120 void updateCompositingLayersAfterLayout();
121 bool syncCompositingStateForThisFrame(Frame* rootFrameForSync); 121 bool syncCompositingStateForThisFrame(Frame* rootFrameForSync);
122 122
123 void clearBackingStores(); 123 void clearBackingStores();
124 void restoreBackingStores(); 124 void restoreBackingStores();
125 125
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 } 560 }
561 561
562 inline LayoutUnit FrameView::mapFromCSSToLayoutUnits(int value) 562 inline LayoutUnit FrameView::mapFromCSSToLayoutUnits(int value)
563 { 563 {
564 return value * m_frame->pageZoomFactor() * m_frame->frameScaleFactor(); 564 return value * m_frame->pageZoomFactor() * m_frame->frameScaleFactor();
565 } 565 }
566 566
567 } // namespace WebCore 567 } // namespace WebCore
568 568
569 #endif // FrameView_h 569 #endif // FrameView_h
OLDNEW
« no previous file with comments | « Source/WebCore/dom/ScriptedAnimationController.cpp ('k') | Source/WebCore/page/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698