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

Side by Side Diff: Source/core/rendering/RenderBoxModelObject.h

Issue 139273007: Web Animations: Remove legacy animations engine. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix TestExpectations. Created 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * Copyright (C) 2003, 2006, 2007, 2009 Apple Inc. All rights reserved. 4 * Copyright (C) 2003, 2006, 2007, 2009 Apple Inc. All rights reserved.
5 * Copyright (C) 2010 Google Inc. All rights reserved. 5 * Copyright (C) 2010 Google Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 184
185 void highQualityRepaintTimerFired(Timer<RenderBoxModelObject>*); 185 void highQualityRepaintTimerFired(Timer<RenderBoxModelObject>*);
186 186
187 virtual void setSelectionState(SelectionState) OVERRIDE; 187 virtual void setSelectionState(SelectionState) OVERRIDE;
188 188
189 bool canHaveBoxInfoInRegion() const { return !isFloating() && !isReplaced() && !isInline() && !hasColumns() && !isTableCell() && isRenderBlock() && !isSVG() ; } 189 bool canHaveBoxInfoInRegion() const { return !isFloating() && !isReplaced() && !isInline() && !hasColumns() && !isTableCell() && isRenderBlock() && !isSVG() ; }
190 190
191 void contentChanged(ContentChangeType); 191 void contentChanged(ContentChangeType);
192 bool hasAcceleratedCompositing() const; 192 bool hasAcceleratedCompositing() const;
193 193
194 bool startTransition(double, CSSPropertyID, const RenderStyle* fromStyle, co nst RenderStyle* toStyle);
195 void transitionPaused(double timeOffset, CSSPropertyID);
196 void transitionFinished(CSSPropertyID);
197
198 bool startAnimation(double timeOffset, const CSSAnimationData*, const Keyfra meList& keyframes);
199 void animationPaused(double timeOffset, const String& name);
200 void animationFinished(const String& name);
201
202 virtual void computeLayerHitTestRects(LayerHitTestRects&) const OVERRIDE; 194 virtual void computeLayerHitTestRects(LayerHitTestRects&) const OVERRIDE;
203 195
204 protected: 196 protected:
205 virtual void willBeDestroyed() OVERRIDE; 197 virtual void willBeDestroyed() OVERRIDE;
206 198
207 class BackgroundImageGeometry { 199 class BackgroundImageGeometry {
208 public: 200 public:
209 IntPoint destOrigin() const { return m_destOrigin; } 201 IntPoint destOrigin() const { return m_destOrigin; }
210 void setDestOrigin(const IntPoint& destOrigin) 202 void setDestOrigin(const IntPoint& destOrigin)
211 { 203 {
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 void drawBoxSideFromPath(GraphicsContext*, const LayoutRect&, const Path&, c onst class BorderEdge[], 331 void drawBoxSideFromPath(GraphicsContext*, const LayoutRect&, const Path&, c onst class BorderEdge[],
340 float thickness, float drawThickness, BoxSide, const RenderStyle*, 332 float thickness, float drawThickness, BoxSide, const RenderStyle*,
341 Color, EBorderStyle, BackgroundBleedAvoidance, bool includeLogicalLeftEdge, bool includeLogicalRightEdge); 333 Color, EBorderStyle, BackgroundBleedAvoidance, bool includeLogicalLeftEdge, bool includeLogicalRightEdge);
342 }; 334 };
343 335
344 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderBoxModelObject, isBoxModelObject()); 336 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderBoxModelObject, isBoxModelObject());
345 337
346 } // namespace WebCore 338 } // namespace WebCore
347 339
348 #endif // RenderBoxModelObject_h 340 #endif // RenderBoxModelObject_h
OLDNEW
« no previous file with comments | « Source/core/rendering/CompositedLayerMapping.cpp ('k') | Source/core/rendering/RenderBoxModelObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698