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

Unified Diff: components/sync/device_info/device_count_metrics_provider_unittest.cc

Issue 2310683002: Remove most ScopedVector usage from c/b/extensions. (Closed)
Patch Set: remove scoped_vector includes Created 4 years, 3 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 | « chrome/browser/extensions/window_open_apitest.cc ('k') | components/sync/device_info/device_info_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/device_info/device_count_metrics_provider_unittest.cc
diff --git a/components/sync/device_info/device_count_metrics_provider_unittest.cc b/components/sync/device_info/device_count_metrics_provider_unittest.cc
index 3e0d83df97206cbaafe9f838636796006a96419e..d98b7ad3f98b9dd665ad734b2b9bf91daddbe194 100644
--- a/components/sync/device_info/device_count_metrics_provider_unittest.cc
+++ b/components/sync/device_info/device_count_metrics_provider_unittest.cc
@@ -28,8 +28,8 @@ class FakeTracker : public DeviceInfoTracker {
const std::string& client_id) const override {
return std::unique_ptr<DeviceInfo>();
}
- ScopedVector<DeviceInfo> GetAllDeviceInfo() const override {
- return ScopedVector<DeviceInfo>();
+ std::vector<std::unique_ptr<DeviceInfo>> GetAllDeviceInfo() const override {
+ return std::vector<std::unique_ptr<DeviceInfo>>();
}
void AddObserver(Observer* observer) override {}
void RemoveObserver(Observer* observer) override {}
« no previous file with comments | « chrome/browser/extensions/window_open_apitest.cc ('k') | components/sync/device_info/device_info_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698