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

Side by Side Diff: sky/engine/core/css/resolver/CSSToStyleMap.h

Issue 893093002: Delete remaining masks dead code. (Closed) Base URL: https://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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * Copyright (C) 2012 Google Inc. All rights reserved. 4 * Copyright (C) 2012 Google Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 void mapFillClip(FillLayer*, CSSValue*) const; 54 void mapFillClip(FillLayer*, CSSValue*) const;
55 void mapFillComposite(FillLayer*, CSSValue*) const; 55 void mapFillComposite(FillLayer*, CSSValue*) const;
56 void mapFillBlendMode(FillLayer*, CSSValue*) const; 56 void mapFillBlendMode(FillLayer*, CSSValue*) const;
57 void mapFillOrigin(FillLayer*, CSSValue*) const; 57 void mapFillOrigin(FillLayer*, CSSValue*) const;
58 void mapFillImage(FillLayer*, CSSValue*); 58 void mapFillImage(FillLayer*, CSSValue*);
59 void mapFillRepeatX(FillLayer*, CSSValue*) const; 59 void mapFillRepeatX(FillLayer*, CSSValue*) const;
60 void mapFillRepeatY(FillLayer*, CSSValue*) const; 60 void mapFillRepeatY(FillLayer*, CSSValue*) const;
61 void mapFillSize(FillLayer*, CSSValue*) const; 61 void mapFillSize(FillLayer*, CSSValue*) const;
62 void mapFillXPosition(FillLayer*, CSSValue*) const; 62 void mapFillXPosition(FillLayer*, CSSValue*) const;
63 void mapFillYPosition(FillLayer*, CSSValue*) const; 63 void mapFillYPosition(FillLayer*, CSSValue*) const;
64 void mapFillMaskSourceType(FillLayer*, CSSValue*) const;
65 64
66 static double mapAnimationDelay(CSSValue*); 65 static double mapAnimationDelay(CSSValue*);
67 static Timing::PlaybackDirection mapAnimationDirection(CSSValue*); 66 static Timing::PlaybackDirection mapAnimationDirection(CSSValue*);
68 static double mapAnimationDuration(CSSValue*); 67 static double mapAnimationDuration(CSSValue*);
69 static Timing::FillMode mapAnimationFillMode(CSSValue*); 68 static Timing::FillMode mapAnimationFillMode(CSSValue*);
70 static double mapAnimationIterationCount(CSSValue*); 69 static double mapAnimationIterationCount(CSSValue*);
71 static AtomicString mapAnimationName(CSSValue*); 70 static AtomicString mapAnimationName(CSSValue*);
72 static EAnimPlayState mapAnimationPlayState(CSSValue*); 71 static EAnimPlayState mapAnimationPlayState(CSSValue*);
73 static CSSTransitionData::TransitionProperty mapAnimationProperty(CSSValue*) ; 72 static CSSTransitionData::TransitionProperty mapAnimationProperty(CSSValue*) ;
74 static PassRefPtr<TimingFunction> mapAnimationTimingFunction(CSSValue*, bool allowStepMiddle = false); 73 static PassRefPtr<TimingFunction> mapAnimationTimingFunction(CSSValue*, bool allowStepMiddle = false);
(...skipping 10 matching lines...) Expand all
85 84
86 // FIXME: Consider passing a StyleResolverState (or ElementResolveState) 85 // FIXME: Consider passing a StyleResolverState (or ElementResolveState)
87 // as an argument instead of caching it on this object. 86 // as an argument instead of caching it on this object.
88 const StyleResolverState& m_state; 87 const StyleResolverState& m_state;
89 ElementStyleResources& m_elementStyleResources; 88 ElementStyleResources& m_elementStyleResources;
90 }; 89 };
91 90
92 } 91 }
93 92
94 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_CSSTOSTYLEMAP_H_ 93 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_CSSTOSTYLEMAP_H_
OLDNEW
« no previous file with comments | « sky/engine/core/css/parser/CSSPropertyParser.cpp ('k') | sky/engine/core/css/resolver/CSSToStyleMap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698