blob: f9c69d847243952b65102874f50a15eac2838101 [file] [log] [blame]
// 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 "core/frame/Navigator.h"
#include "platform/Supplementable.h"
namespace blink {
class BudgetService;
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 BudgetService* budget(ExecutionContext*, Navigator&);
BudgetService* budget(ExecutionContext*);
virtual void Trace(blink::Visitor*);
private:
explicit NavigatorBudget(Navigator&);
static const char* SupplementName();
Member<BudgetService> budget_;
};
} // namespace blink
#endif // NavigatorBudget_h