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

Side by Side Diff: Source/core/animation/css/CSSAnimationData.cpp

Issue 207683005: Oilpan: Move CSSAnimationData and CSSAnimationDataList to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 , m_iterationCountSet(false) 42 , m_iterationCountSet(false)
43 , m_nameSet(false) 43 , m_nameSet(false)
44 , m_playStateSet(false) 44 , m_playStateSet(false)
45 , m_propertySet(false) 45 , m_propertySet(false)
46 , m_timingFunctionSet(false) 46 , m_timingFunctionSet(false)
47 , m_isNone(false) 47 , m_isNone(false)
48 { 48 {
49 } 49 }
50 50
51 CSSAnimationData::CSSAnimationData(const CSSAnimationData& o) 51 CSSAnimationData::CSSAnimationData(const CSSAnimationData& o)
52 : RefCounted<CSSAnimationData>() 52 : m_name(o.m_name)
53 , m_name(o.m_name)
54 , m_property(o.m_property) 53 , m_property(o.m_property)
55 , m_mode(o.m_mode) 54 , m_mode(o.m_mode)
56 , m_iterationCount(o.m_iterationCount) 55 , m_iterationCount(o.m_iterationCount)
57 , m_delay(o.m_delay) 56 , m_delay(o.m_delay)
58 , m_duration(o.m_duration) 57 , m_duration(o.m_duration)
59 , m_timingFunction(o.m_timingFunction) 58 , m_timingFunction(o.m_timingFunction)
60 , m_direction(o.m_direction) 59 , m_direction(o.m_direction)
61 , m_fillMode(o.m_fillMode) 60 , m_fillMode(o.m_fillMode)
62 , m_playState(o.m_playState) 61 , m_playState(o.m_playState)
63 , m_delaySet(o.m_delaySet) 62 , m_delaySet(o.m_delaySet)
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 && m_isNone == o->m_isNone; 118 && m_isNone == o->m_isNone;
120 } 119 }
121 120
122 const AtomicString& CSSAnimationData::initialAnimationName() 121 const AtomicString& CSSAnimationData::initialAnimationName()
123 { 122 {
124 DEFINE_STATIC_LOCAL(const AtomicString, initialValue, ("none")); 123 DEFINE_STATIC_LOCAL(const AtomicString, initialValue, ("none"));
125 return initialValue; 124 return initialValue;
126 } 125 }
127 126
128 } // namespace WebCore 127 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/animation/css/CSSAnimationData.h ('k') | Source/core/animation/css/CSSAnimationDataList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698