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

Unified Diff: chrome/browser/chromeos/customization/customization_document_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 | « no previous file | chrome/browser/chromeos/extensions/device_local_account_external_policy_loader_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/customization/customization_document_unittest.cc
diff --git a/chrome/browser/chromeos/customization/customization_document_unittest.cc b/chrome/browser/chromeos/customization/customization_document_unittest.cc
index 3ba0dac7b646402dc7903c521874431a97742782..7ea30be4487bb1cddd25b55fb0e368e271439ca1 100644
--- a/chrome/browser/chromeos/customization/customization_document_unittest.cc
+++ b/chrome/browser/chromeos/customization/customization_document_unittest.cc
@@ -193,11 +193,12 @@ class MockExternalProviderVisitor
bool(const ExternalInstallInfoUpdateUrl&, bool));
MOCK_METHOD1(OnExternalProviderReady,
void(const extensions::ExternalProviderInterface* provider));
- MOCK_METHOD4(OnExternalProviderUpdateComplete,
- void(const extensions::ExternalProviderInterface*,
- const ScopedVector<ExternalInstallInfoUpdateUrl>&,
- const ScopedVector<ExternalInstallInfoFile>&,
- const std::set<std::string>& removed_extensions));
+ MOCK_METHOD4(
+ OnExternalProviderUpdateComplete,
+ void(const extensions::ExternalProviderInterface*,
+ const std::vector<std::unique_ptr<ExternalInstallInfoUpdateUrl>>&,
+ const std::vector<std::unique_ptr<ExternalInstallInfoFile>>&,
+ const std::set<std::string>& removed_extensions));
};
class ServicesCustomizationDocumentTest : public testing::Test {
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/device_local_account_external_policy_loader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698