Index: cc/animation/animation_id_provider.cc |
diff --git a/cc/animation/animation_id_provider.cc b/cc/animation/animation_id_provider.cc |
deleted file mode 100644 |
index caefdb8fee588a5ae3f792861547e806b05604a2..0000000000000000000000000000000000000000 |
--- a/cc/animation/animation_id_provider.cc |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "base/atomic_sequence_num.h" |
-#include "cc/animation/animation_id_provider.h" |
- |
-namespace cc { |
- |
-base::StaticAtomicSequenceNumber g_next_animation_id; |
-base::StaticAtomicSequenceNumber g_next_group_id; |
- |
-int AnimationIdProvider::NextAnimationId() { |
- // Animation IDs start from 1. |
- return g_next_animation_id.GetNext() + 1; |
-} |
- |
-int AnimationIdProvider::NextGroupId() { |
- // Animation group IDs start from 1. |
- return g_next_group_id.GetNext() + 1; |
-} |
- |
-} // namespace cc |