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

Unified Diff: cc/CCTimer.cpp

Issue 11122003: [cc] Rename all cc/ filenames to Chromium style (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/CCTimer.h ('k') | cc/CCTimingFunction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCTimer.cpp
diff --git a/cc/CCTimer.cpp b/cc/CCTimer.cpp
deleted file mode 100644
index 089c12b19b52cd876abb582f0be2d73d6bbefebe..0000000000000000000000000000000000000000
--- a/cc/CCTimer.cpp
+++ /dev/null
@@ -1,80 +0,0 @@
-// Copyright 2011 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 "config.h"
-
-#include "CCTimer.h"
-
-#include "base/compiler_specific.h"
-#include "CCThread.h"
-
-namespace cc {
-
-class CCTimerTask : public CCThread::Task {
-public:
- explicit CCTimerTask(CCTimer* timer)
- : CCThread::Task(0)
- , m_timer(timer)
- {
- }
-
- virtual ~CCTimerTask()
- {
- if (!m_timer)
- return;
-
- ASSERT(m_timer->m_task == this);
- m_timer->stop();
- }
-
- virtual void performTask() OVERRIDE
- {
- if (!m_timer)
- return;
-
- CCTimerClient* client = m_timer->m_client;
-
- m_timer->stop();
- if (client)
- client->onTimerFired();
- }
-
-private:
- friend class CCTimer;
-
- CCTimer* m_timer; // null if cancelled
-};
-
-CCTimer::CCTimer(CCThread* thread, CCTimerClient* client)
- : m_client(client)
- , m_thread(thread)
- , m_task(0)
-{
-}
-
-CCTimer::~CCTimer()
-{
- stop();
-}
-
-void CCTimer::startOneShot(double intervalSeconds)
-{
- stop();
-
- m_task = new CCTimerTask(this);
-
- // The thread expects delays in milliseconds.
- m_thread->postDelayedTask(adoptPtr(m_task), intervalSeconds * 1000.0);
-}
-
-void CCTimer::stop()
-{
- if (!m_task)
- return;
-
- m_task->m_timer = 0;
- m_task = 0;
-}
-
-} // namespace cc
« no previous file with comments | « cc/CCTimer.h ('k') | cc/CCTimingFunction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698