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

Side by Side Diff: sky/engine/core/rendering/RenderView.h

Issue 953673002: Delete RenderLayerModelObject. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 | « sky/engine/core/rendering/RenderObject.cpp ('k') | sky/engine/core/rendering/RenderView.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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2006 Apple Computer, Inc. 3 * Copyright (C) 2006 Apple Computer, Inc.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 IntRect documentRect() const; 87 IntRect documentRect() const;
88 88
89 double layoutViewportWidth() const; 89 double layoutViewportWidth() const;
90 double layoutViewportHeight() const; 90 double layoutViewportHeight() const;
91 91
92 void addIFrame(RenderIFrame* iframe); 92 void addIFrame(RenderIFrame* iframe);
93 void removeIFrame(RenderIFrame* iframe); 93 void removeIFrame(RenderIFrame* iframe);
94 void updateIFramesAfterLayout(); 94 void updateIFramesAfterLayout();
95 95
96 private: 96 private:
97 virtual void mapLocalToContainer(const RenderLayerModelObject* paintInvalida tionContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip) const override; 97 virtual void mapLocalToContainer(const RenderBox* paintInvalidationContainer , TransformState&, MapCoordinatesFlags = ApplyContainerFlip) const override;
98 virtual const RenderObject* pushMappingToContainer(const RenderLayerModelObj ect* ancestorToStopAt, RenderGeometryMap&) const override; 98 virtual const RenderObject* pushMappingToContainer(const RenderBox* ancestor ToStopAt, RenderGeometryMap&) const override;
99 virtual void mapAbsoluteToLocalPoint(MapCoordinatesFlags, TransformState&) c onst override; 99 virtual void mapAbsoluteToLocalPoint(MapCoordinatesFlags, TransformState&) c onst override;
100 100
101 void positionDialog(RenderBox*); 101 void positionDialog(RenderBox*);
102 void positionDialogs(); 102 void positionDialogs();
103 103
104 FrameView* m_frameView; 104 FrameView* m_frameView;
105 105
106 RawPtr<RenderObject> m_selectionStart; 106 RawPtr<RenderObject> m_selectionStart;
107 RawPtr<RenderObject> m_selectionEnd; 107 RawPtr<RenderObject> m_selectionEnd;
108 108
109 int m_selectionStartPos; 109 int m_selectionStartPos;
110 int m_selectionEndPos; 110 int m_selectionEndPos;
111 111
112 unsigned m_renderCounterCount; 112 unsigned m_renderCounterCount;
113 113
114 unsigned m_hitTestCount; 114 unsigned m_hitTestCount;
115 115
116 WTF::HashSet<RenderIFrame*> m_iframes; 116 WTF::HashSet<RenderIFrame*> m_iframes;
117 }; 117 };
118 118
119 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderView, isRenderView()); 119 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderView, isRenderView());
120 120
121 } // namespace blink 121 } // namespace blink
122 122
123 #endif // SKY_ENGINE_CORE_RENDERING_RENDERVIEW_H_ 123 #endif // SKY_ENGINE_CORE_RENDERING_RENDERVIEW_H_
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/RenderObject.cpp ('k') | sky/engine/core/rendering/RenderView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698