aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Hector Chavez <lhchavez@google.com>2016-07-27 16:52:29 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-07-27 16:52:29 +0000
commitc103ba6fcd3653f23090fdee56df0470cf3dac97 (patch)
tree006fd52e1afe6b8cb3a891853e1d681b0b3a57c2
parenta710624baa8c5ca770be31697a47bf9e26fe408a (diff)
parenta7054911b8cb65c65ddc4f3548ad6515a1f778f2 (diff)
downloadwebservd-c103ba6fcd3653f23090fdee56df0470cf3dac97.tar.gz
webservd: Update libchrome APIs to r405848
am: a7054911b8 Change-Id: I89dba8f0d1e3ea08164f492b07bca165cedcca4f
-rw-r--r--webservd/config.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webservd/config.cc b/webservd/config.cc
index 62e512c..5080632 100644
--- a/webservd/config.cc
+++ b/webservd/config.cc
@@ -140,7 +140,7 @@ bool LoadConfigFromString(const std::string& config_json,
const base::ListValue* protocol_handlers = nullptr; // Owned by |dict_value|
if (dict_value->GetList(kProtocolHandlersKey, &protocol_handlers)) {
- for (base::Value* handler_value : *protocol_handlers) {
+ for (const auto& handler_value : *protocol_handlers) {
const base::DictionaryValue* handler_dict = nullptr; // Owned by
// |dict_value|
if (!handler_value->GetAsDictionary(&handler_dict)) {