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

Unified Diff: chromeos/cryptohome/cryptohome_parameters.h

Issue 1870833003: chromeos: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « chromeos/audio/audio_device.cc ('k') | chromeos/cryptohome/cryptohome_parameters.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/cryptohome/cryptohome_parameters.h
diff --git a/chromeos/cryptohome/cryptohome_parameters.h b/chromeos/cryptohome/cryptohome_parameters.h
index 2037b210bad77972b678effa43b98b820884eeae..4d9a41913491015606b1d99a94389a0c5605434a 100644
--- a/chromeos/cryptohome/cryptohome_parameters.h
+++ b/chromeos/cryptohome/cryptohome_parameters.h
@@ -87,6 +87,7 @@ struct CHROMEOS_EXPORT KeyDefinition {
AuthorizationData(bool encrypt,
bool sign,
const std::string& symmetric_key);
+ AuthorizationData(const AuthorizationData& other);
~AuthorizationData();
bool operator==(const AuthorizationData& other) const;
@@ -121,6 +122,7 @@ struct CHROMEOS_EXPORT KeyDefinition {
KeyDefinition(const std::string& secret,
const std::string& label,
int privileges);
+ KeyDefinition(const KeyDefinition& other);
~KeyDefinition();
bool operator==(const KeyDefinition& other) const;
@@ -151,6 +153,7 @@ struct CHROMEOS_EXPORT Authorization {
class CHROMEOS_EXPORT MountParameters {
public:
explicit MountParameters(bool ephemeral);
+ MountParameters(const MountParameters& other);
~MountParameters();
bool operator==(const MountParameters& other) const;
« no previous file with comments | « chromeos/audio/audio_device.cc ('k') | chromeos/cryptohome/cryptohome_parameters.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698