diff options
author | kinaba@chromium.org <kinaba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-01 03:22:32 +0000 |
---|---|---|
committer | kinaba@chromium.org <kinaba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-01 03:22:32 +0000 |
commit | cf2de6bd3e4e5e97d59a2c833033b3c40aad3a70 (patch) | |
tree | 7bb8cf0220c65a53c191e6ed33b4e515b03fbc21 /chrome/chrome_browser_chromeos.gypi | |
parent | 5331978b75a104235ac98eb3be9e7e176994ab8e (diff) | |
download | chromium_src-cf2de6bd3e4e5e97d59a2c833033b3c40aad3a70.zip chromium_src-cf2de6bd3e4e5e97d59a2c833033b3c40aad3a70.tar.gz chromium_src-cf2de6bd3e4e5e97d59a2c833033b3c40aad3a70.tar.bz2 |
Make CreateFile an independent operation in DriveFileSystem.
Currently CreateFile is implemented by using TransferRegularFile, but
for fixing the issue 225330, the relation needs to be reveresed.
That is, TransferRegularFile should be implemented by CreateFile
(followed by background syncing). This CL is a preparation for that step,
and as a bonus reduces the size of the DriveFileSystem class.
BUG=225330
R=satorux@chromium.org
Review URL: https://codereview.chromium.org/14628002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197556 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_browser_chromeos.gypi')
-rw-r--r-- | chrome/chrome_browser_chromeos.gypi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/chrome_browser_chromeos.gypi b/chrome/chrome_browser_chromeos.gypi index 5773665..9f76ad4 100644 --- a/chrome/chrome_browser_chromeos.gypi +++ b/chrome/chrome_browser_chromeos.gypi @@ -246,6 +246,8 @@ 'browser/chromeos/drive/file_system/copy_operation.h', 'browser/chromeos/drive/file_system/create_directory_operation.cc', 'browser/chromeos/drive/file_system/create_directory_operation.h', + 'browser/chromeos/drive/file_system/create_file_operation.cc', + 'browser/chromeos/drive/file_system/create_file_operation.h', 'browser/chromeos/drive/file_system/drive_operations.cc', 'browser/chromeos/drive/file_system/drive_operations.h', 'browser/chromeos/drive/file_system/move_operation.cc', |