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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerClients.cpp

Issue 534133002: [WIP] bindings: Introduce PropertyBag (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/serviceworkers/ResponseInit.h ('k') | Source/modules/webmidi/MIDIOptions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/ServiceWorkerClients.cpp
diff --git a/Source/modules/serviceworkers/ServiceWorkerClients.cpp b/Source/modules/serviceworkers/ServiceWorkerClients.cpp
index 0d6474f0d6a073f3094d767cf5b7a6de59dd6279..9b3e0ebf7f395392bafae82caf18f460dae5b160 100644
--- a/Source/modules/serviceworkers/ServiceWorkerClients.cpp
+++ b/Source/modules/serviceworkers/ServiceWorkerClients.cpp
@@ -58,7 +58,7 @@ ScriptPromise ServiceWorkerClients::getAll(ScriptState* scriptState, const Dicti
ScriptPromise promise = resolver->promise();
bool includeUncontrolled = false;
- DictionaryHelper::get(options, "includeUncontrolled", includeUncontrolled);
+ options.get("includeUncontrolled", includeUncontrolled);
if (includeUncontrolled) {
// FIXME: Currently we don't support includeUncontrolled=true.
resolver->reject(DOMException::create(NotSupportedError, "includeUncontrolled parameter of getAll is not supported."));
« no previous file with comments | « Source/modules/serviceworkers/ResponseInit.h ('k') | Source/modules/webmidi/MIDIOptions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698