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

Unified Diff: components/dom_distiller/core/article_distillation_update.cc

Issue 1728033002: components: 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: components/dom_distiller/core/article_distillation_update.cc
diff --git a/components/dom_distiller/core/article_distillation_update.cc b/components/dom_distiller/core/article_distillation_update.cc
index 1ed54b5c8106c43dcb4e3e1fdf6aa428b042b44e..c15ebb15a8f7dc7a22dec6b97d96ae83b9bba2b4 100644
--- a/components/dom_distiller/core/article_distillation_update.cc
+++ b/components/dom_distiller/core/article_distillation_update.cc
@@ -16,6 +16,9 @@ ArticleDistillationUpdate::ArticleDistillationUpdate(
has_prev_page_(has_prev_page),
pages_(pages) {}
+ArticleDistillationUpdate::ArticleDistillationUpdate(
+ const ArticleDistillationUpdate& other) = default;
+
ArticleDistillationUpdate::~ArticleDistillationUpdate() {}
const DistilledPageProto& ArticleDistillationUpdate::GetDistilledPage(

Powered by Google App Engine
This is Rietveld 408576698