summaryrefslogtreecommitdiffstats
path: root/webkit/compositor_bindings/web_animation_impl.cc
diff options
context:
space:
mode:
authorjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-12 16:24:38 +0000
committerjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-12 16:24:38 +0000
commitf209b34c28c450d045fb1db6774d7bca7e6c2e6f (patch)
treec4141c6a4a3417acbab0fb7669d69b1a25a35be2 /webkit/compositor_bindings/web_animation_impl.cc
parent1e282861b2061d3c4c14de3d85bff45a136ea962 (diff)
downloadchromium_src-f209b34c28c450d045fb1db6774d7bca7e6c2e6f.zip
chromium_src-f209b34c28c450d045fb1db6774d7bca7e6c2e6f.tar.gz
chromium_src-f209b34c28c450d045fb1db6774d7bca7e6c2e6f.tar.bz2
Remove ::create factory functions from objects created via WebCompositorSupport
These are uncalled and don't actually work at all in the component build. Leaving them around is just confusing. Code that wants to instantiate these types can use the WebCompositorSupport interface or directly construct the Impls. BUG= Review URL: https://chromiumcodereview.appspot.com/11231017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167188 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/compositor_bindings/web_animation_impl.cc')
-rw-r--r--webkit/compositor_bindings/web_animation_impl.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/webkit/compositor_bindings/web_animation_impl.cc b/webkit/compositor_bindings/web_animation_impl.cc
index 0e156fa..961bd86 100644
--- a/webkit/compositor_bindings/web_animation_impl.cc
+++ b/webkit/compositor_bindings/web_animation_impl.cc
@@ -15,11 +15,6 @@ using cc::ActiveAnimation;
namespace WebKit {
-WebAnimation* WebAnimation::create(const WebAnimationCurve& curve, TargetProperty targetProperty, int animationId)
-{
- return new WebAnimationImpl(curve, targetProperty, animationId, 0);
-}
-
WebAnimationImpl::WebAnimationImpl(const WebAnimationCurve& webCurve, TargetProperty targetProperty, int animationId, int groupId)
{
static int nextAnimationId = 1;