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

Unified Diff: chrome/browser/extensions/external_policy_loader_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
Index: chrome/browser/extensions/external_policy_loader_unittest.cc
diff --git a/chrome/browser/extensions/external_policy_loader_unittest.cc b/chrome/browser/extensions/external_policy_loader_unittest.cc
index 9aaae0822babffe5d180861908fea0083cd32f2a..540ef9970451e1c781a8e814a8820bf240500611 100644
--- a/chrome/browser/extensions/external_policy_loader_unittest.cc
+++ b/chrome/browser/extensions/external_policy_loader_unittest.cc
@@ -103,8 +103,10 @@ class MockExternalPolicyProviderVisitor
void OnExternalProviderUpdateComplete(
const ExternalProviderInterface* provider,
- const ScopedVector<ExternalInstallInfoUpdateUrl>& update_url_extensions,
- const ScopedVector<ExternalInstallInfoFile>& file_extensions,
+ const std::vector<std::unique_ptr<ExternalInstallInfoUpdateUrl>>&
+ update_url_extensions,
+ const std::vector<std::unique_ptr<ExternalInstallInfoFile>>&
+ file_extensions,
const std::set<std::string>& removed_extensions) override {
ADD_FAILURE() << "Only win registry provider is expected to call this.";
}
« no previous file with comments | « chrome/browser/extensions/extension_service_unittest.cc ('k') | chrome/browser/extensions/external_provider_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698