OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/chromeos/drive/file_system/copy_operation.h" | 5 #include "chrome/browser/chromeos/drive/file_system/copy_operation.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/task_runner_util.h" | 10 #include "base/task_runner_util.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 | 39 |
40 // Stores a file to the cache and mark it dirty. | 40 // Stores a file to the cache and mark it dirty. |
41 FileError StoreAndMarkDirty(internal::FileCache* cache, | 41 FileError StoreAndMarkDirty(internal::FileCache* cache, |
42 const std::string& resource_id, | 42 const std::string& resource_id, |
43 const std::string& md5, | 43 const std::string& md5, |
44 const base::FilePath& local_file_path) { | 44 const base::FilePath& local_file_path) { |
45 FileError error = cache->Store(resource_id, md5, local_file_path, | 45 FileError error = cache->Store(resource_id, md5, local_file_path, |
46 internal::FileCache::FILE_OPERATION_COPY); | 46 internal::FileCache::FILE_OPERATION_COPY); |
47 if (error != FILE_ERROR_OK) | 47 if (error != FILE_ERROR_OK) |
48 return error; | 48 return error; |
49 return cache->MarkDirty(resource_id, md5); | 49 return cache->MarkDirty(resource_id); |
50 } | 50 } |
51 | 51 |
52 } // namespace | 52 } // namespace |
53 | 53 |
54 CopyOperation::CopyOperation(base::SequencedTaskRunner* blocking_task_runner, | 54 CopyOperation::CopyOperation(base::SequencedTaskRunner* blocking_task_runner, |
55 OperationObserver* observer, | 55 OperationObserver* observer, |
56 JobScheduler* scheduler, | 56 JobScheduler* scheduler, |
57 internal::ResourceMetadata* metadata, | 57 internal::ResourceMetadata* metadata, |
58 internal::FileCache* cache, | 58 internal::FileCache* cache, |
59 DriveServiceInterface* drive_service, | 59 DriveServiceInterface* drive_service, |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 canonicalized_resource_id, | 475 canonicalized_resource_id, |
476 // Drop the document extension, which should not be | 476 // Drop the document extension, which should not be |
477 // in the document title. | 477 // in the document title. |
478 // TODO(yoshiki): Remove this code with crbug.com/223304. | 478 // TODO(yoshiki): Remove this code with crbug.com/223304. |
479 remote_dest_file_path.BaseName().RemoveExtension().value(), | 479 remote_dest_file_path.BaseName().RemoveExtension().value(), |
480 callback); | 480 callback); |
481 } | 481 } |
482 | 482 |
483 } // namespace file_system | 483 } // namespace file_system |
484 } // namespace drive | 484 } // namespace drive |
OLD | NEW |