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

Unified Diff: chromeos/cryptohome/cryptohome_parameters.cc

Issue 2798023005: Force encryption migration if the device supports ARC. (Closed)
Patch Set: Created 3 years, 8 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: chromeos/cryptohome/cryptohome_parameters.cc
diff --git a/chromeos/cryptohome/cryptohome_parameters.cc b/chromeos/cryptohome/cryptohome_parameters.cc
index 4f6d5579fb955ec3b880d50c8f607183445db253..c2c545598ae7ddfbed7853379bc40bbf015c031a 100644
--- a/chromeos/cryptohome/cryptohome_parameters.cc
+++ b/chromeos/cryptohome/cryptohome_parameters.cc
@@ -230,8 +230,8 @@ bool Authorization::operator==(const Authorization& other) const {
return key == other.key && label == other.label;
}
-MountParameters::MountParameters(bool ephemeral) : ephemeral(ephemeral) {
-}
+MountParameters::MountParameters(bool ephemeral)
+ : ephemeral(ephemeral), force_dircrypto_if_available(false) {}
xiyuan 2017/04/05 21:15:11 nit: put initialization in header
fukino 2017/04/06 14:22:17 Done.
MountParameters::MountParameters(const MountParameters& other) = default;

Powered by Google App Engine
This is Rietveld 408576698