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

Unified Diff: chrome/common/extensions/command.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/common/extensions/command.cc
diff --git a/chrome/common/extensions/command.cc b/chrome/common/extensions/command.cc
index 1615773d3aeea0e15f70cf37f2fa8a6cc5588d72..f2290dca4def611d4827ec80de5ac90ec64bd843 100644
--- a/chrome/common/extensions/command.cc
+++ b/chrome/common/extensions/command.cc
@@ -294,6 +294,8 @@ Command::Command(const std::string& command_name,
IsNamedCommand(command_name), &error);
}
+Command::Command(const Command& other) = default;
+
Command::~Command() {}
// static

Powered by Google App Engine
This is Rietveld 408576698