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

Unified Diff: Source/core/streams/ScriptQueuingStrategy.cpp

Issue 1118673002: Implement ReadableStream as a V8 extra (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanups; make controller a member instead of arg 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
« no previous file with comments | « Source/core/streams/ScriptQueuingStrategy.h ('k') | Source/core/streams/ScriptQueuingStrategy.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/streams/ScriptQueuingStrategy.cpp
diff --git a/Source/core/streams/ScriptQueuingStrategy.cpp b/Source/core/streams/ScriptQueuingStrategy.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..10f72ea591e02763f9e11389606c54e81d0fdfb0
--- /dev/null
+++ b/Source/core/streams/ScriptQueuingStrategy.cpp
@@ -0,0 +1,23 @@
+// 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.
+
+#include "config.h"
+#include "core/streams/ScriptQueuingStrategy.h"
+
+namespace blink {
+
+ScriptQueuingStrategy::ScriptQueuingStrategy(double highWaterMark) : m_highWaterMark(highWaterMark)
+{
+}
+
+double ScriptQueuingStrategy::highWaterMark()
+{
+ return m_highWaterMark;
+}
+
+DEFINE_TRACE(ScriptQueuingStrategy)
+{
+}
+
+} // namespace blink
« no previous file with comments | « Source/core/streams/ScriptQueuingStrategy.h ('k') | Source/core/streams/ScriptQueuingStrategy.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698