| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/drive/service/drive_service_interface.h" | 5 #include "components/drive/service/drive_service_interface.h" |
| 6 | 6 |
| 7 namespace drive { | 7 namespace drive { |
| 8 | 8 |
| 9 AddNewDirectoryOptions::AddNewDirectoryOptions() | 9 AddNewDirectoryOptions::AddNewDirectoryOptions() |
| 10 : visibility(google_apis::drive::FILE_VISIBILITY_DEFAULT) { | 10 : visibility(google_apis::drive::FILE_VISIBILITY_DEFAULT) { |
| 11 } | 11 } |
| 12 | 12 |
| 13 AddNewDirectoryOptions::AddNewDirectoryOptions( |
| 14 const AddNewDirectoryOptions& other) = default; |
| 15 |
| 13 AddNewDirectoryOptions::~AddNewDirectoryOptions() { | 16 AddNewDirectoryOptions::~AddNewDirectoryOptions() { |
| 14 } | 17 } |
| 15 | 18 |
| 16 UploadNewFileOptions::UploadNewFileOptions() { | 19 UploadNewFileOptions::UploadNewFileOptions() { |
| 17 } | 20 } |
| 18 | 21 |
| 22 UploadNewFileOptions::UploadNewFileOptions(const UploadNewFileOptions& other) = |
| 23 default; |
| 24 |
| 19 UploadNewFileOptions::~UploadNewFileOptions() { | 25 UploadNewFileOptions::~UploadNewFileOptions() { |
| 20 } | 26 } |
| 21 | 27 |
| 22 UploadExistingFileOptions::UploadExistingFileOptions() { | 28 UploadExistingFileOptions::UploadExistingFileOptions() { |
| 23 } | 29 } |
| 24 | 30 |
| 31 UploadExistingFileOptions::UploadExistingFileOptions( |
| 32 const UploadExistingFileOptions& other) = default; |
| 33 |
| 25 UploadExistingFileOptions::~UploadExistingFileOptions() { | 34 UploadExistingFileOptions::~UploadExistingFileOptions() { |
| 26 } | 35 } |
| 27 | 36 |
| 28 } // namespace drive | 37 } // namespace drive |
| OLD | NEW |