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

Unified Diff: printing/printed_document.cc

Issue 3522004: FBTF: Move ctors/dtors into implementation files. Adds ctors/dtors to non-POD structs. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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: printing/printed_document.cc
diff --git a/printing/printed_document.cc b/printing/printed_document.cc
index 560f95bab4ef72a3cfefa892fe91dbf5c16643b7..f5989f61ffaa3a7e83621ab3b2b18c4c2655864f 100644
--- a/printing/printed_document.cc
+++ b/printing/printed_document.cc
@@ -303,6 +303,9 @@ PrintedDocument::Mutable::Mutable(PrintedPagesSource* source)
shrink_factor(0) {
}
+PrintedDocument::Mutable::~Mutable() {
+}
+
PrintedDocument::Immutable::Immutable(const PrintSettings& settings,
PrintedPagesSource* source,
int cookie)
@@ -327,4 +330,7 @@ PrintedDocument::Immutable::Immutable(const PrintSettings& settings,
#endif // OS_WIN
}
+PrintedDocument::Immutable::~Immutable() {
+}
+
} // namespace printing

Powered by Google App Engine
This is Rietveld 408576698