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

Unified Diff: chrome/browser/extensions/api/identity/identity_api.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/identity_api.cc
diff --git a/chrome/browser/extensions/api/identity/identity_api.cc b/chrome/browser/extensions/api/identity/identity_api.cc
index 5c217b2eed6fb94bbf6f0e2e9f26a596d8befb4f..3155af0d7d12101eb4693bc686547aae6d3fe53e 100644
--- a/chrome/browser/extensions/api/identity/identity_api.cc
+++ b/chrome/browser/extensions/api/identity/identity_api.cc
@@ -121,6 +121,9 @@ IdentityTokenCacheValue::IdentityTokenCacheValue(const std::string& token,
expiration_time_ = base::Time::Now() + time_to_live;
}
+IdentityTokenCacheValue::IdentityTokenCacheValue(
+ const IdentityTokenCacheValue& other) = default;
+
IdentityTokenCacheValue::~IdentityTokenCacheValue() {}
IdentityTokenCacheValue::CacheValueStatus IdentityTokenCacheValue::status()

Powered by Google App Engine
This is Rietveld 408576698