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

Unified Diff: components/drive/service/drive_service_interface.h

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/drive/service/drive_service_interface.h
diff --git a/components/drive/service/drive_service_interface.h b/components/drive/service/drive_service_interface.h
index 51265c67feda35e215799b0a00d8380720ad526e..bfc4439e05f9c40a30d0dec658eedf68c8006baa 100644
--- a/components/drive/service/drive_service_interface.h
+++ b/components/drive/service/drive_service_interface.h
@@ -37,6 +37,7 @@ class DriveServiceObserver {
// Optional parameters for AddNewDirectory().
struct AddNewDirectoryOptions {
AddNewDirectoryOptions();
+ AddNewDirectoryOptions(const AddNewDirectoryOptions& other);
~AddNewDirectoryOptions();
// visibility of the new directory.
@@ -58,6 +59,7 @@ struct AddNewDirectoryOptions {
// MultipartUploadNewFile().
struct UploadNewFileOptions {
UploadNewFileOptions();
+ UploadNewFileOptions(const UploadNewFileOptions& other);
~UploadNewFileOptions();
// modified_date of the file.
@@ -76,6 +78,7 @@ struct UploadNewFileOptions {
// MultipartUploadExistingFile().
struct UploadExistingFileOptions {
UploadExistingFileOptions();
+ UploadExistingFileOptions(const UploadExistingFileOptions& other);
~UploadExistingFileOptions();
// Expected ETag of the file. UPLOAD_ERROR_CONFLICT error is generated when

Powered by Google App Engine
This is Rietveld 408576698