| Index: jingle/glue/utils.cc
|
| diff --git a/jingle/glue/utils.cc b/jingle/glue/utils.cc
|
| index 923f02130527c290db87b484586c91c7d2696f07..4ea1d36f202345ac5f772f3117519f4f2af75eae 100644
|
| --- a/jingle/glue/utils.cc
|
| +++ b/jingle/glue/utils.cc
|
| @@ -72,7 +72,7 @@ bool DeserializeP2PCandidate(const std::string& candidate_str,
|
| cricket::Candidate* candidate) {
|
| std::unique_ptr<base::Value> value(
|
| base::JSONReader::Read(candidate_str, base::JSON_ALLOW_TRAILING_COMMAS));
|
| - if (!value.get() || !value->IsType(base::Value::TYPE_DICTIONARY)) {
|
| + if (!value.get() || !value->IsType(base::Value::Type::DICTIONARY)) {
|
| return false;
|
| }
|
|
|
|
|