| Index: google_apis/drive/drive_api_parser.cc
|
| diff --git a/google_apis/drive/drive_api_parser.cc b/google_apis/drive/drive_api_parser.cc
|
| index 89c6a9e11f88e1355e424f842324ef61bcacb710..998fb057fd89aefef2bdd1ade0e58a69513e3f80 100644
|
| --- a/google_apis/drive/drive_api_parser.cc
|
| +++ b/google_apis/drive/drive_api_parser.cc
|
| @@ -4,10 +4,7 @@
|
|
|
| #include "google_apis/drive/drive_api_parser.h"
|
|
|
| -#include <algorithm>
|
| -
|
| #include "base/basictypes.h"
|
| -#include "base/files/file_path.h"
|
| #include "base/json/json_value_converter.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/strings/string_number_conversions.h"
|
| @@ -16,10 +13,6 @@
|
| #include "base/values.h"
|
| #include "google_apis/drive/time_util.h"
|
|
|
| -using base::Value;
|
| -using base::DictionaryValue;
|
| -using base::ListValue;
|
| -
|
| namespace google_apis {
|
|
|
| namespace {
|
| @@ -75,7 +68,7 @@ bool GetOpenWithLinksFromDictionaryValue(
|
| return false;
|
|
|
| result->reserve(dictionary_value->size());
|
| - for (DictionaryValue::Iterator iter(*dictionary_value);
|
| + for (base::DictionaryValue::Iterator iter(*dictionary_value);
|
| !iter.IsAtEnd(); iter.Advance()) {
|
| std::string string_value;
|
| if (!iter.value().GetAsString(&string_value))
|
|
|