| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/extensions/file_manager/private_api_file_syste
m.h" | 5 #include "chrome/browser/chromeos/extensions/file_manager/private_api_file_syste
m.h" |
| 6 | 6 |
| 7 #include <sys/stat.h> | 7 #include <sys/stat.h> |
| 8 #include <sys/statvfs.h> | 8 #include <sys/statvfs.h> |
| 9 #include <sys/types.h> | 9 #include <sys/types.h> |
| 10 #include <utime.h> | 10 #include <utime.h> |
| 11 | 11 |
| 12 #include "base/path_service.h" | 12 #include "base/path_service.h" |
| 13 #include "base/posix/eintr_wrapper.h" | 13 #include "base/posix/eintr_wrapper.h" |
| 14 #include "base/strings/stringprintf.h" | 14 #include "base/strings/stringprintf.h" |
| 15 #include "base/task_runner_util.h" | 15 #include "base/task_runner_util.h" |
| 16 #include "base/threading/sequenced_worker_pool.h" | 16 #include "base/threading/sequenced_worker_pool.h" |
| 17 #include "chrome/browser/chromeos/drive/drive.pb.h" | 17 #include "chrome/browser/chromeos/drive/drive.pb.h" |
| 18 #include "chrome/browser/chromeos/drive/drive_integration_service.h" | 18 #include "chrome/browser/chromeos/drive/drive_integration_service.h" |
| 19 #include "chrome/browser/chromeos/drive/file_system_interface.h" | 19 #include "chrome/browser/chromeos/drive/file_system_interface.h" |
| 20 #include "chrome/browser/chromeos/drive/file_system_util.h" | 20 #include "chrome/browser/chromeos/drive/file_system_util.h" |
| 21 #include "chrome/browser/chromeos/extensions/file_manager/event_router.h" | 21 #include "chrome/browser/chromeos/extensions/file_manager/event_router.h" |
| 22 #include "chrome/browser/chromeos/extensions/file_manager/file_browser_private_a
pi.h" | 22 #include "chrome/browser/chromeos/extensions/file_manager/file_browser_private_a
pi.h" |
| 23 #include "chrome/browser/chromeos/extensions/file_manager/fileapi_util.h" | |
| 24 #include "chrome/browser/chromeos/extensions/file_manager/private_api_util.h" | 23 #include "chrome/browser/chromeos/extensions/file_manager/private_api_util.h" |
| 24 #include "chrome/browser/chromeos/file_manager/fileapi_util.h" |
| 25 #include "chrome/browser/chromeos/fileapi/file_system_backend.h" | 25 #include "chrome/browser/chromeos/fileapi/file_system_backend.h" |
| 26 #include "chrome/browser/profiles/profile.h" | 26 #include "chrome/browser/profiles/profile.h" |
| 27 #include "chromeos/disks/disk_mount_manager.h" | 27 #include "chromeos/disks/disk_mount_manager.h" |
| 28 #include "content/public/browser/browser_context.h" | 28 #include "content/public/browser/browser_context.h" |
| 29 #include "content/public/browser/child_process_security_policy.h" | 29 #include "content/public/browser/child_process_security_policy.h" |
| 30 #include "content/public/browser/render_process_host.h" | 30 #include "content/public/browser/render_process_host.h" |
| 31 #include "content/public/browser/render_view_host.h" | 31 #include "content/public/browser/render_view_host.h" |
| 32 #include "content/public/browser/storage_partition.h" | 32 #include "content/public/browser/storage_partition.h" |
| 33 #include "webkit/browser/fileapi/file_system_context.h" | 33 #include "webkit/browser/fileapi/file_system_context.h" |
| 34 #include "webkit/browser/fileapi/file_system_file_util.h" | 34 #include "webkit/browser/fileapi/file_system_file_util.h" |
| (...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 FileBrowserPrivateCancelCopyFunction::~FileBrowserPrivateCancelCopyFunction() { | 647 FileBrowserPrivateCancelCopyFunction::~FileBrowserPrivateCancelCopyFunction() { |
| 648 } | 648 } |
| 649 | 649 |
| 650 bool FileBrowserPrivateCancelCopyFunction::RunImpl() { | 650 bool FileBrowserPrivateCancelCopyFunction::RunImpl() { |
| 651 // TODO(hidehiko): Implement cancelCopy function. | 651 // TODO(hidehiko): Implement cancelCopy function. |
| 652 NOTIMPLEMENTED(); | 652 NOTIMPLEMENTED(); |
| 653 return false; | 653 return false; |
| 654 } | 654 } |
| 655 | 655 |
| 656 } // namespace extensions | 656 } // namespace extensions |
| OLD | NEW |