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

Unified Diff: third_party/WebKit/Source/modules/budget/NavigatorBudget.h

Issue 2110833002: Basic framework for Budget API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed Exposed lines and fixed build error. 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/NavigatorBudget.h
diff --git a/third_party/WebKit/Source/modules/budget/NavigatorBudget.h b/third_party/WebKit/Source/modules/budget/NavigatorBudget.h
new file mode 100644
index 0000000000000000000000000000000000000000..53d5e95d66cb379b93835f5a9f3f430cffe04a13
--- /dev/null
+++ b/third_party/WebKit/Source/modules/budget/NavigatorBudget.h
@@ -0,0 +1,39 @@
+// 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.
+
+#ifndef NavigatorBudget_h
+#define NavigatorBudget_h
+
+#include "platform/Supplementable.h"
+
+namespace blink {
+
+class Budget;
+class Navigator;
+
+// This exposes the budget object on the Navigator partial interface.
+class NavigatorBudget final
+ : public GarbageCollected<NavigatorBudget>
+ , public Supplement<Navigator> {
+ USING_GARBAGE_COLLECTED_MIXIN(NavigatorBudget);
+ WTF_MAKE_NONCOPYABLE(NavigatorBudget);
+
+public:
+ static NavigatorBudget& from(Navigator&);
+
+ static Budget* budget(Navigator&);
+ Budget* budget();
+
+ DECLARE_VIRTUAL_TRACE();
+
+private:
+ NavigatorBudget();
+ static const char* supplementName();
+
+ Member<Budget> m_budget;
+};
+
+} // namespace blink
+
+#endif // NavigatorBudget_h
« no previous file with comments | « third_party/WebKit/Source/modules/budget/BudgetChunk.idl ('k') | third_party/WebKit/Source/modules/budget/NavigatorBudget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698