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

Unified Diff: third_party/WebKit/Source/modules/budget/BudgetService.cpp

Issue 2522553003: Mojo C++ bindings: switch WebKit mojom targets to use STL/WTF types. (Closed)
Patch Set: . Created 4 years, 1 month 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
« no previous file with comments | « third_party/WebKit/Source/modules/budget/BudgetService.h ('k') | third_party/WebKit/public/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/budget/BudgetService.cpp
diff --git a/third_party/WebKit/Source/modules/budget/BudgetService.cpp b/third_party/WebKit/Source/modules/budget/BudgetService.cpp
index 490996b601a509f445e256f10340bfd826aa4306..afd12a2d84c8dd630330755a589e226a619cf4bb 100644
--- a/third_party/WebKit/Source/modules/budget/BudgetService.cpp
+++ b/third_party/WebKit/Source/modules/budget/BudgetService.cpp
@@ -109,7 +109,7 @@ ScriptPromise BudgetService::getBudget(ScriptState* scriptState) {
void BudgetService::gotBudget(
ScriptPromiseResolver* resolver,
mojom::blink::BudgetServiceErrorType error,
- const mojo::WTFArray<mojom::blink::BudgetStatePtr> expectations) const {
+ const WTF::Vector<mojom::blink::BudgetStatePtr> expectations) const {
if (error != mojom::blink::BudgetServiceErrorType::NONE) {
resolver->reject(errorTypeToException(error));
return;
« no previous file with comments | « third_party/WebKit/Source/modules/budget/BudgetService.h ('k') | third_party/WebKit/public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698