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

Unified Diff: chrome/browser/sync_file_system/drive_backend/list_changes_task.h

Issue 2613223002: Remove ScopedVector from base::JSONValueConverter (Closed)
Patch Set: Rebase and address comments from mmenke@ Created 3 years, 11 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
Index: chrome/browser/sync_file_system/drive_backend/list_changes_task.h
diff --git a/chrome/browser/sync_file_system/drive_backend/list_changes_task.h b/chrome/browser/sync_file_system/drive_backend/list_changes_task.h
index 9b47673eccafec5ee3c352246274583d014c127f..220dcddbb046faa0e8cd4cfd474f64be30c82085 100644
--- a/chrome/browser/sync_file_system/drive_backend/list_changes_task.h
+++ b/chrome/browser/sync_file_system/drive_backend/list_changes_task.h
@@ -10,7 +10,6 @@
#include <memory>
#include "base/macros.h"
-#include "base/memory/scoped_vector.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/sync_file_system/drive_backend/sync_task.h"
#include "google_apis/drive/drive_api_error_codes.h"
@@ -50,7 +49,7 @@ class ListChangesTask : public SyncTask {
drive::DriveServiceInterface* drive_service();
SyncEngineContext* sync_context_;
- ScopedVector<google_apis::ChangeResource> change_list_;
+ std::vector<std::unique_ptr<google_apis::ChangeResource>> change_list_;
std::vector<std::string> file_ids_;

Powered by Google App Engine
This is Rietveld 408576698