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

Unified Diff: chromeos/cryptohome/mock_homedir_methods.cc

Issue 526353002: Merge cryptohome::RetrievedKeyData with cryptohome::KeyDefinition (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@d_2_367847_add_get_key_data_ex_to_mount_flow
Patch Set: Rebased. Created 6 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 | « chromeos/cryptohome/homedir_methods_unittest.cc ('k') | chromeos/login/auth/cryptohome_authenticator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/cryptohome/mock_homedir_methods.cc
diff --git a/chromeos/cryptohome/mock_homedir_methods.cc b/chromeos/cryptohome/mock_homedir_methods.cc
index db6edb5f81134bb0b0f13583581a2f7346190ad3..dfc506f99028a86ba36022ae09f4ab51536dabb3 100644
--- a/chromeos/cryptohome/mock_homedir_methods.cc
+++ b/chromeos/cryptohome/mock_homedir_methods.cc
@@ -4,7 +4,8 @@
#include "chromeos/cryptohome/mock_homedir_methods.h"
-#include "base/memory/scoped_vector.h"
+#include <vector>
+
#include "chromeos/cryptohome/cryptohome_parameters.h"
#include "chromeos/cryptohome/mock_async_method_caller.h"
@@ -41,7 +42,7 @@ void MockHomedirMethods::DoCallback(const Callback& callback) {
}
void MockHomedirMethods::DoGetDataCallback(const GetKeyDataCallback& callback) {
- callback.Run(success_, return_code_, ScopedVector<RetrievedKeyData>());
+ callback.Run(success_, return_code_, std::vector<KeyDefinition>());
}
void MockHomedirMethods::DoMountCallback(const MountCallback& callback) {
« no previous file with comments | « chromeos/cryptohome/homedir_methods_unittest.cc ('k') | chromeos/login/auth/cryptohome_authenticator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698