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

Unified Diff: third_party/WebKit/Source/modules/budget/Budget.cpp

Issue 2110833002: Basic framework for Budget API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated to (almost) match the spec Created 4 years, 4 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: third_party/WebKit/Source/modules/budget/Budget.cpp
diff --git a/third_party/WebKit/Source/modules/budget/Budget.cpp b/third_party/WebKit/Source/modules/budget/Budget.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..5a99a3fd55a28df6c5becbf0dba04c92f521a27d
--- /dev/null
+++ b/third_party/WebKit/Source/modules/budget/Budget.cpp
@@ -0,0 +1,41 @@
+// Copyright 2016 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 "modules/budget/Budget.h"
+
+#include "bindings/core/v8/ScriptPromise.h"
+#include "bindings/core/v8/ScriptPromiseResolver.h"
+#include "bindings/core/v8/ScriptState.h"
+#include "core/dom/DOMException.h"
+#include "core/dom/ExceptionCode.h"
+#include "core/frame/Navigator.h"
+
+namespace blink {
+
+Budget::Budget(Navigator* navigator)
+ : m_navigator(navigator)
+{
+ DCHECK(navigator);
+}
+
+// static
+ScriptPromise Budget::getCost(ScriptState* state, const AtomicString& actionType)
+{
+ // TODO(harkness): Trigger the cost calculation.
+ return ScriptPromise::rejectWithDOMException(state, DOMException::create(NotSupportedError, "Not yet implemented"));
+}
+
+// static
+ScriptPromise Budget::getBudget(ScriptState* state, ExceptionState& exception)
Peter Beverloo 2016/08/03 13:25:54 nit: drop the RaisesException annotation in the ID
harkness 2016/08/04 14:18:23 Done.
+{
+ // TODO(harkness): Trigger the budget calculation.
+ return ScriptPromise::rejectWithDOMException(state, DOMException::create(NotSupportedError, "Not yet implemented"));
+}
+
+DEFINE_TRACE(Budget)
+{
+ visitor->trace(m_navigator);
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698