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

Unified Diff: chrome/browser/extensions/updater/extension_updater.h

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/updater/extension_updater.h
diff --git a/chrome/browser/extensions/updater/extension_updater.h b/chrome/browser/extensions/updater/extension_updater.h
index 772eef66e51578c711fb8276b479f590e932fa7f..dcf656ed8e72ba7e94545c0318851d5a02b91c1c 100644
--- a/chrome/browser/extensions/updater/extension_updater.h
+++ b/chrome/browser/extensions/updater/extension_updater.h
@@ -137,6 +137,7 @@ class ExtensionUpdater : public ExtensionDownloaderDelegate,
bool file_ownership_passed,
const std::set<int>& request_ids,
const InstallCallback& callback);
+ FetchedCRXFile(const FetchedCRXFile& other);
~FetchedCRXFile();
CRXFileInfo info;
@@ -148,6 +149,7 @@ class ExtensionUpdater : public ExtensionDownloaderDelegate,
struct InProgressCheck {
InProgressCheck();
+ InProgressCheck(const InProgressCheck& other);
~InProgressCheck();
bool install_immediately;

Powered by Google App Engine
This is Rietveld 408576698