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

Unified Diff: Source/modules/filesystem/FileSystemFlags.h

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/encoding/TextDecoder.cpp ('k') | Source/modules/geofencing/CircularRegion.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileSystemFlags.h
diff --git a/Source/modules/filesystem/FileSystemFlags.h b/Source/modules/filesystem/FileSystemFlags.h
index 8bb95cbdd31696f4d8b21a47cd2820a427d38d94..cdaf5c34025fcc5b5f72922045dd22d0195b7d12 100644
--- a/Source/modules/filesystem/FileSystemFlags.h
+++ b/Source/modules/filesystem/FileSystemFlags.h
@@ -40,8 +40,8 @@ struct FileSystemFlags {
: create(false)
, exclusive(false)
{
- DictionaryHelper::get(options, "create", create);
- DictionaryHelper::get(options, "exclusive", exclusive);
+ options.get("create", create);
+ options.get("exclusive", exclusive);
}
bool create;
« no previous file with comments | « Source/modules/encoding/TextDecoder.cpp ('k') | Source/modules/geofencing/CircularRegion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698