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

Side by Side Diff: third_party/WebKit/Source/modules/budget/BudgetService.cpp

Issue 2231873002: Added budget_service.mojom (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@budget_api
Patch Set: Added comments and converted scriptState passing to be by PassRefPtr 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "modules/budget/BudgetService.h" 5 #include "modules/budget/BudgetService.h"
6 6
7 #include "bindings/core/v8/ScriptPromise.h" 7 #include "bindings/core/v8/ScriptPromise.h"
8 #include "bindings/core/v8/ScriptPromiseResolver.h" 8 #include "bindings/core/v8/ScriptPromiseResolver.h"
9 #include "bindings/core/v8/ScriptState.h" 9 #include "bindings/core/v8/ScriptState.h"
10 #include "core/dom/DOMException.h" 10 #include "core/dom/DOMException.h"
11 #include "core/dom/ExceptionCode.h" 11 #include "core/dom/ExceptionCode.h"
12 #include "modules/budget/BudgetChunk.h"
13 #include "public/platform/InterfaceProvider.h"
14 #include "public/platform/Platform.h"
15 #include "public/platform/modules/budget_service/budget_service.mojom-blink.h"
12 16
13 namespace blink { 17 namespace blink {
14 18
15 BudgetService::BudgetService() {} 19 BudgetService::BudgetService()
20 {
21 Platform::current()->interfaceProvider()->getInterface(mojo::GetProxy(&m_ser vice));
22 }
16 23
17 ScriptPromise BudgetService::getCost(ScriptState* scriptState, const AtomicStrin g& actionType) 24 BudgetService::~BudgetService()
18 { 25 {
19 // TODO(harkness): Trigger the cost calculation. 26 }
20 return ScriptPromise::rejectWithDOMException(scriptState, DOMException::crea te(NotSupportedError, "Not yet implemented")); 27
28 ScriptPromise BudgetService::getCost(ScriptState* scriptState, const AtomicStrin g& /* actionType */)
29 {
30 DCHECK(m_service);
31 ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState) ;
32 ScriptPromise promise = resolver->promise();
33
34 // TODO(harkness): Map the actionType to OperationType.
35 // Get the cost for the action from the browser BudgetService.
36 mojom::blink::OperationType type = mojom::blink::OperationType::SILENT_PUSH;
37 m_service->GetCost(type, convertToBaseCallback(WTF::bind(&BudgetService::asy ncGetCost, wrapPersistent(this), wrapPersistent(resolver))));
38 return promise;
39 }
40
41 void BudgetService::asyncGetCost(ScriptPromiseResolver* resolver, double cost) c onst
42 {
43 resolver->resolve(cost);
21 } 44 }
22 45
23 ScriptPromise BudgetService::getBudget(ScriptState* scriptState) 46 ScriptPromise BudgetService::getBudget(ScriptState* scriptState)
24 { 47 {
25 // TODO(harkness): Trigger the budget calculation. 48 DCHECK(m_service);
26 return ScriptPromise::rejectWithDOMException(scriptState, DOMException::crea te(NotSupportedError, "Not yet implemented")); 49 ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState) ;
50 ScriptPromise promise = resolver->promise();
51
52 // Get the budget from the browser BudgetService.
53 RefPtr<SecurityOrigin> origin(scriptState->getExecutionContext()->getSecurit yOrigin());
54 m_service->GetBudget(origin, convertToBaseCallback(WTF::bind(&BudgetService: :asyncGetBudget, wrapPersistent(this), PassRefPtr<ScriptState>(scriptState), wra pPersistent(resolver))));
harkness 2016/08/15 11:21:20 I converted this from unretained to PassRefPtr aft
55 return promise;
56 }
57
58 void BudgetService::asyncGetBudget(PassRefPtr<ScriptState> scriptState, ScriptPr omiseResolver* resolver, const mojo::WTFArray<mojom::blink::BudgetStatePtr> expe ctations) const
59 {
60
61 Vector<v8::Local<v8::Value>> budget;
62 if (!scriptState) {
63 resolver->resolve(budget);
64 return;
65 }
66
67 // Copy the chunks into the budget array.
68 budget.grow(expectations.size());
69 for (uint i = 0; i < expectations.size(); i++) {
70 BudgetChunk chunk;
71 chunk.setAmount(expectations[i]->budget_at);
72 chunk.setExpiration(expectations[i]->time);
73
74 budget[i] = freezeV8Object(toV8(chunk, scriptState.get()), scriptState-> isolate());
75 }
76
77 resolver->resolve(budget);
27 } 78 }
28 79
29 } // namespace blink 80 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/budget/BudgetService.h ('k') | third_party/WebKit/Source/modules/modules.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698