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

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

Issue 373423002: Split Dictionary's get and convert into DictionaryHelper. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/TextEncoder.cpp ('k') | Source/modules/geolocation/PositionOptions.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 0108c520feeeca19ecabad0d37030a69986d414f..37aef5ec6be1e5d2641283b4abb5f6906ac70dd9 100644
--- a/Source/modules/filesystem/FileSystemFlags.h
+++ b/Source/modules/filesystem/FileSystemFlags.h
@@ -40,8 +40,8 @@ struct FileSystemFlags {
: create(false)
, exclusive(false)
{
- options.get("create", create);
- options.get("exclusive", exclusive);
+ DictionaryHelper::get(options, "create", create);
+ DictionaryHelper::get(options, "exclusive", exclusive);
}
bool create;
« no previous file with comments | « Source/modules/encoding/TextEncoder.cpp ('k') | Source/modules/geolocation/PositionOptions.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698