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

Unified Diff: chrome/browser/extensions/api/identity/extension_token_key.cc

Issue 1731483003: chrome: 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, 10 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/api/identity/extension_token_key.cc
diff --git a/chrome/browser/extensions/api/identity/extension_token_key.cc b/chrome/browser/extensions/api/identity/extension_token_key.cc
index 8eb44a553ec6ddc8712bd8b314c92fa83914cabc..08f81d01c1e3cd07461d6cbdee0681473a9c4eb0 100644
--- a/chrome/browser/extensions/api/identity/extension_token_key.cc
+++ b/chrome/browser/extensions/api/identity/extension_token_key.cc
@@ -13,6 +13,8 @@ ExtensionTokenKey::ExtensionTokenKey(const std::string& extension_id,
const std::set<std::string>& scopes)
: extension_id(extension_id), account_id(account_id), scopes(scopes) {}
+ExtensionTokenKey::ExtensionTokenKey(const ExtensionTokenKey& other) = default;
+
ExtensionTokenKey::~ExtensionTokenKey() {}
bool ExtensionTokenKey::operator<(const ExtensionTokenKey& rhs) const {

Powered by Google App Engine
This is Rietveld 408576698