Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(396)

Side by Side Diff: chrome/browser/chromeos/drive/dummy_file_system.h

Issue 22335004: Add drive::FileSystem::GetFileByPathForSaving(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/fake_file_system.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_
6 #define CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_ 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_
7 7
8 #include "chrome/browser/chromeos/drive/file_system_interface.h" 8 #include "chrome/browser/chromeos/drive/file_system_interface.h"
9 9
10 namespace drive { 10 namespace drive {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 const FileOperationCallback& callback) OVERRIDE {} 51 const FileOperationCallback& callback) OVERRIDE {}
52 virtual void TruncateFile(const base::FilePath& file_path, 52 virtual void TruncateFile(const base::FilePath& file_path,
53 int64 length, 53 int64 length,
54 const FileOperationCallback& callback) OVERRIDE {} 54 const FileOperationCallback& callback) OVERRIDE {}
55 virtual void Pin(const base::FilePath& file_path, 55 virtual void Pin(const base::FilePath& file_path,
56 const FileOperationCallback& callback) OVERRIDE {} 56 const FileOperationCallback& callback) OVERRIDE {}
57 virtual void Unpin(const base::FilePath& file_path, 57 virtual void Unpin(const base::FilePath& file_path,
58 const FileOperationCallback& callback) OVERRIDE {} 58 const FileOperationCallback& callback) OVERRIDE {}
59 virtual void GetFileByPath(const base::FilePath& file_path, 59 virtual void GetFileByPath(const base::FilePath& file_path,
60 const GetFileCallback& callback) OVERRIDE {} 60 const GetFileCallback& callback) OVERRIDE {}
61 virtual void GetFileByPathForSaving(
62 const base::FilePath& file_path,
63 const GetFileCallback& callback) OVERRIDE {}
61 virtual void GetFileContentByPath( 64 virtual void GetFileContentByPath(
62 const base::FilePath& file_path, 65 const base::FilePath& file_path,
63 const GetFileContentInitializedCallback& initialized_callback, 66 const GetFileContentInitializedCallback& initialized_callback,
64 const google_apis::GetContentCallback& get_content_callback, 67 const google_apis::GetContentCallback& get_content_callback,
65 const FileOperationCallback& completion_callback) OVERRIDE {} 68 const FileOperationCallback& completion_callback) OVERRIDE {}
66 virtual void GetResourceEntryByPath( 69 virtual void GetResourceEntryByPath(
67 const base::FilePath& file_path, 70 const base::FilePath& file_path,
68 const GetResourceEntryCallback& callback) OVERRIDE {} 71 const GetResourceEntryCallback& callback) OVERRIDE {}
69 virtual void ReadDirectoryByPath( 72 virtual void ReadDirectoryByPath(
70 const base::FilePath& file_path, 73 const base::FilePath& file_path,
(...skipping 22 matching lines...) Expand all
93 const FileOperationCallback& callback) OVERRIDE {} 96 const FileOperationCallback& callback) OVERRIDE {}
94 virtual void GetCacheEntryByResourceId( 97 virtual void GetCacheEntryByResourceId(
95 const std::string& resource_id, 98 const std::string& resource_id,
96 const GetCacheEntryCallback& callback) OVERRIDE {} 99 const GetCacheEntryCallback& callback) OVERRIDE {}
97 virtual void Reload() OVERRIDE {} 100 virtual void Reload() OVERRIDE {}
98 }; 101 };
99 102
100 } // namespace drive 103 } // namespace drive
101 104
102 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_ 105 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/fake_file_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698