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

Unified Diff: sky/engine/tonic/dart_timer_heap.h

Issue 1160763004: Add support for testing content in SkyView (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 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
Index: sky/engine/tonic/dart_timer_heap.h
diff --git a/sky/engine/tonic/dart_timer_heap.h b/sky/engine/tonic/dart_timer_heap.h
new file mode 100644
index 0000000000000000000000000000000000000000..4b3f9dabbd2b3dbdb5cf63e7e1b8cff905b643da
--- /dev/null
+++ b/sky/engine/tonic/dart_timer_heap.h
@@ -0,0 +1,44 @@
+// Copyright 2015 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.
+
+#ifndef SKY_ENGINE_TONIC_DART_TIMER_HEAP_H_
+#define SKY_ENGINE_TONIC_DART_TIMER_HEAP_H_
+
+#include "base/memory/weak_ptr.h"
+#include "base/time/time.h"
+#include "dart/runtime/include/dart_api.h"
+#include "sky/engine/tonic/dart_persistent_value.h"
+#include "sky/engine/wtf/HashMap.h"
+#include "sky/engine/wtf/OwnPtr.h"
+#include "sky/engine/wtf/PassOwnPtr.h"
+
+namespace blink {
+
+class DartTimerHeap {
+ public:
+ DartTimerHeap();
+ ~DartTimerHeap();
+
+ struct Task {
+ DartPersistentValue closure;
+ base::TimeDelta delay;
+ bool repeating = false;
+ };
+
+ int Add(PassOwnPtr<Task> task);
+ void Remove(int id);
+
+ private:
+ void Schedule(int id, PassOwnPtr<Task> task);
+ void Run(int id);
+
+ int next_timer_id_;
+ HashMap<int, OwnPtr<Task>> heap_;
+
+ base::WeakPtrFactory<DartTimerHeap> weak_factory_;
+};
+
+}
+
+#endif // SKY_ENGINE_TONIC_DART_TIMER_HEAP_H_

Powered by Google App Engine
This is Rietveld 408576698