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

Unified Diff: chrome/browser/extensions/active_script_controller.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/active_script_controller.cc
diff --git a/chrome/browser/extensions/active_script_controller.cc b/chrome/browser/extensions/active_script_controller.cc
index c167d2e9e5e2f429261deb1c8c6d373f59c1d5cc..cb4ba009b26a20bf688b8d7c2db6e7b13f2ded19 100644
--- a/chrome/browser/extensions/active_script_controller.cc
+++ b/chrome/browser/extensions/active_script_controller.cc
@@ -40,6 +40,9 @@ ActiveScriptController::PendingScript::PendingScript(
const base::Closure& permit_script)
: run_location(run_location), permit_script(permit_script) {}
+ActiveScriptController::PendingScript::PendingScript(
+ const PendingScript& other) = default;
+
ActiveScriptController::PendingScript::~PendingScript() {}
ActiveScriptController::ActiveScriptController(

Powered by Google App Engine
This is Rietveld 408576698