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 |
index 53d5e95d66cb379b93835f5a9f3f430cffe04a13..14578ceb984d3cd3f1418dc226433f1f407afdac 100644 |
--- a/third_party/WebKit/Source/modules/budget/NavigatorBudget.h |
+++ b/third_party/WebKit/Source/modules/budget/NavigatorBudget.h |
@@ -9,7 +9,7 @@ |
namespace blink { |
-class Budget; |
+class BudgetService; |
class Navigator; |
// This exposes the budget object on the Navigator partial interface. |
@@ -22,8 +22,8 @@ class NavigatorBudget final |
public: |
static NavigatorBudget& from(Navigator&); |
- static Budget* budget(Navigator&); |
- Budget* budget(); |
+ static BudgetService* budget(Navigator&); |
+ BudgetService* budget(); |
DECLARE_VIRTUAL_TRACE(); |
@@ -31,7 +31,7 @@ private: |
NavigatorBudget(); |
static const char* supplementName(); |
- Member<Budget> m_budget; |
+ Member<BudgetService> m_budget; |
}; |
} // namespace blink |