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

Side by Side Diff: sky/engine/core/frame/FrameView.h

Issue 711203002: Remove zoom() and effectiveZoom(). (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « sky/engine/core/fetch/ImageResource.cpp ('k') | sky/engine/core/frame/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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 bool m_inSynchronousPostLayout; 268 bool m_inSynchronousPostLayout;
269 int m_layoutCount; 269 int m_layoutCount;
270 unsigned m_nestedLayoutCount; 270 unsigned m_nestedLayoutCount;
271 Timer<FrameView> m_postLayoutTasksTimer; 271 Timer<FrameView> m_postLayoutTasksTimer;
272 bool m_firstLayoutCallbackPending; 272 bool m_firstLayoutCallbackPending;
273 273
274 bool m_firstLayout; 274 bool m_firstLayout;
275 bool m_isTransparent; 275 bool m_isTransparent;
276 Color m_baseBackgroundColor; 276 Color m_baseBackgroundColor;
277 IntSize m_lastViewportSize; 277 IntSize m_lastViewportSize;
278 float m_lastZoomFactor;
279 278
280 AtomicString m_mediaType; 279 AtomicString m_mediaType;
281 280
282 bool m_overflowStatusDirty; 281 bool m_overflowStatusDirty;
283 bool m_horizontalOverflow; 282 bool m_horizontalOverflow;
284 bool m_verticalOverflow; 283 bool m_verticalOverflow;
285 RenderObject* m_viewportRenderer; 284 RenderObject* m_viewportRenderer;
286 285
287 double m_lastPaintTime; 286 double m_lastPaintTime;
288 287
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); 328 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue);
330 } 329 }
331 private: 330 private:
332 FrameView* m_view; 331 FrameView* m_view;
333 bool m_originalValue; 332 bool m_originalValue;
334 }; 333 };
335 334
336 } // namespace blink 335 } // namespace blink
337 336
338 #endif // FrameView_h 337 #endif // FrameView_h
OLDNEW
« no previous file with comments | « sky/engine/core/fetch/ImageResource.cpp ('k') | sky/engine/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698