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

Unified Diff: google_apis/drive/drive_api_parser.cc

Issue 443303003: Random cleanup around google_apis/drive and c/b/drive. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | « google_apis/drive/base_requests.cc ('k') | google_apis/drive/drive_api_parser_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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))
« no previous file with comments | « google_apis/drive/base_requests.cc ('k') | google_apis/drive/drive_api_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698