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

Unified Diff: chrome/browser/extensions/bundle_installer.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/bundle_installer.cc
diff --git a/chrome/browser/extensions/bundle_installer.cc b/chrome/browser/extensions/bundle_installer.cc
index a0762a7fc293ed7e675b7c94913dd6c2378dafa7..1e66c13ce1ee88c0dd9845067a5b2ffc02ea0899 100644
--- a/chrome/browser/extensions/bundle_installer.cc
+++ b/chrome/browser/extensions/bundle_installer.cc
@@ -92,6 +92,8 @@ void BundleInstaller::SetAutoApproveForTesting(bool auto_approve) {
BundleInstaller::Item::Item() : state(STATE_PENDING) {}
+BundleInstaller::Item::Item(const Item& other) = default;
+
BundleInstaller::Item::~Item() {}
base::string16 BundleInstaller::Item::GetNameForDisplay() const {

Powered by Google App Engine
This is Rietveld 408576698