Chromium Code Reviews| Index: chrome/browser/budget_service/budget_service_impl.h |
| diff --git a/chrome/browser/budget_service/budget_service_impl.h b/chrome/browser/budget_service/budget_service_impl.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..499eccd0bfd507da47c64e809abca165dd7e0364 |
| --- /dev/null |
| +++ b/chrome/browser/budget_service/budget_service_impl.h |
| @@ -0,0 +1,46 @@ |
| +// 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 CHROME_BROWSER_BUDGET_SERVICE_BUDGET_SERVICE_IMPL_H_ |
| +#define CHROME_BROWSER_BUDGET_SERVICE_BUDGET_SERVICE_IMPL_H_ |
| + |
| +#include "base/macros.h" |
| +#include "mojo/public/cpp/bindings/strong_binding.h" |
| +#include "third_party/WebKit/public/platform/modules/budget_service/budget_service.mojom.h" |
| + |
| +namespace content { |
| +class BrowserContext; |
|
Peter Beverloo
2016/08/23 10:13:30
nit: unused
harkness
2016/08/23 10:48:33
Done.
|
| +} |
| + |
| +// Implementation of the BudgetService Mojo service provided by the browser |
| +// layer. It is responsible for dispatching budget requests to the |
| +// BudgetManager. |
| +class BudgetServiceImpl : public blink::mojom::BudgetService { |
| + public: |
| + static void Create(int render_process_id, |
| + blink::mojom::BudgetServiceRequest request); |
| + |
| + // blink::mojom::BudgetService implementation. |
| + void GetCost(blink::mojom::BudgetOperationType operation, |
| + const GetCostCallback& callback) override; |
| + |
| + // blink::mojom::BudgetService implementation. |
|
Peter Beverloo
2016/08/23 10:13:30
nit: remove lines 27 and 28 (we usually have a "bl
harkness
2016/08/23 10:48:33
Done.
|
| + void GetBudget(const url::Origin& origin, |
| + const GetBudgetCallback& callbac) override; |
| + |
| + private: |
| + BudgetServiceImpl(int render_process_id, |
| + blink::mojom::BudgetServiceRequest request); |
| + ~BudgetServiceImpl() override; |
| + |
| + // Render process ID is used to get the browser context. |
| + int render_process_id_; |
| + |
| + // The lifetime of the mojo service is tied to the lifetime of the connection. |
| + mojo::StrongBinding<blink::mojom::BudgetService> binding_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(BudgetServiceImpl); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_BUDGET_SERVICE_BUDGET_SERVICE_IMPL_H_ |