| 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 "chrome/browser/chromeos/drive/fileapi/fileapi_worker.h" | 5 #include "chrome/browser/chromeos/drive/fileapi/fileapi_worker.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/task_runner_util.h" | 9 #include "base/task_runner_util.h" |
| 10 #include "base/threading/sequenced_worker_pool.h" | 10 #include "base/threading/sequenced_worker_pool.h" |
| 11 #include "chrome/browser/chromeos/drive/drive.pb.h" | 11 #include "chrome/browser/chromeos/drive/drive.pb.h" |
| 12 #include "chrome/browser/chromeos/drive/file_errors.h" | 12 #include "chrome/browser/chromeos/drive/file_errors.h" |
| 13 #include "chrome/browser/chromeos/drive/file_system_interface.h" | 13 #include "chrome/browser/chromeos/drive/file_system_interface.h" |
| 14 #include "chrome/browser/chromeos/drive/file_system_util.h" | 14 #include "chrome/browser/chromeos/drive/file_system_util.h" |
| 15 #include "chrome/browser/chromeos/drive/resource_entry_conversion.h" | 15 #include "chrome/browser/chromeos/drive/resource_entry_conversion.h" |
| 16 #include "content/public/browser/browser_thread.h" | 16 #include "content/public/browser/browser_thread.h" |
| 17 #include "storage/browser/fileapi/file_system_url.h" |
| 17 #include "storage/common/fileapi/directory_entry.h" | 18 #include "storage/common/fileapi/directory_entry.h" |
| 18 #include "webkit/browser/fileapi/file_system_url.h" | |
| 19 | 19 |
| 20 using content::BrowserThread; | 20 using content::BrowserThread; |
| 21 | 21 |
| 22 namespace drive { | 22 namespace drive { |
| 23 namespace fileapi_internal { | 23 namespace fileapi_internal { |
| 24 namespace { | 24 namespace { |
| 25 | 25 |
| 26 // The summary of opening mode is: | 26 // The summary of opening mode is: |
| 27 // - File::FLAG_OPEN: Open the existing file. Fail if not exists. | 27 // - File::FLAG_OPEN: Open the existing file. Fail if not exists. |
| 28 // - File::FLAG_CREATE: Create the file if not exists. Fail if exists. | 28 // - File::FLAG_CREATE: Create the file if not exists. Fail if exists. |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 const StatusCallback& callback, | 360 const StatusCallback& callback, |
| 361 FileSystemInterface* file_system) { | 361 FileSystemInterface* file_system) { |
| 362 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 362 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 363 file_system->TouchFile(file_path, last_access_time, last_modified_time, | 363 file_system->TouchFile(file_path, last_access_time, last_modified_time, |
| 364 base::Bind(&RunStatusCallbackByFileError, callback)); | 364 base::Bind(&RunStatusCallbackByFileError, callback)); |
| 365 | 365 |
| 366 } | 366 } |
| 367 | 367 |
| 368 } // namespace fileapi_internal | 368 } // namespace fileapi_internal |
| 369 } // namespace drive | 369 } // namespace drive |
| OLD | NEW |