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

Unified Diff: Source/core/html/StableState.cpp

Issue 153813002: Support "await a stable state" and "provide a stable state" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: nits Created 6 years, 10 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 | « Source/core/html/StableState.h ('k') | Source/core/html/StableStateTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/StableState.cpp
diff --git a/Source/core/html/StableState.cpp b/Source/core/html/StableState.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..761917c2e5956e1b71febbbaedde925056d1ac22
--- /dev/null
+++ b/Source/core/html/StableState.cpp
@@ -0,0 +1,67 @@
+// Copyright 2014 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 "core/html/StableState.h"
+
+#include "wtf/HashSet.h"
+#include "wtf/MainThread.h"
+
+namespace WebCore {
+
+class StableStateAwaiters {
+public:
+ StableStateAwaiters() : m_currentAwaiter(0) { }
+
+ void add(StableState::Awaiter* awaiter)
+ {
+ ASSERT(!m_currentAwaiter);
+ m_awaiters.add(awaiter);
+ }
+
+ void remove(StableState::Awaiter* awaiter)
+ {
+ ASSERT(!m_currentAwaiter || m_currentAwaiter == awaiter);
+ m_awaiters.remove(awaiter);
+ }
+
+ void didAwaitStableState()
+ {
+ ASSERT(!m_currentAwaiter);
+ while (!m_awaiters.isEmpty()) {
+ m_currentAwaiter = *m_awaiters.begin();
+ m_currentAwaiter->didAwaitStableState();
+ remove(m_currentAwaiter);
+ m_currentAwaiter = 0;
+ }
+ }
+
+private:
+ HashSet<StableState::Awaiter*> m_awaiters;
+ StableState::Awaiter* m_currentAwaiter;
+};
+
+static StableStateAwaiters& stableStateAwaiters()
+{
+ ASSERT(isMainThread());
+ DEFINE_STATIC_LOCAL(StableStateAwaiters, stableStateAwaiters, ());
+ return stableStateAwaiters;
+}
+
+StableState::Awaiter::~Awaiter()
+{
+ stableStateAwaiters().remove(this);
+}
+
+void StableState::await(Awaiter& awaiter)
+{
+ stableStateAwaiters().add(&awaiter);
+}
+
+void StableState::provide()
+{
+ stableStateAwaiters().didAwaitStableState();
+}
+
+} // namespace WebCore
« no previous file with comments | « Source/core/html/StableState.h ('k') | Source/core/html/StableStateTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698