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

Unified Diff: chrome/browser/chromeos/drive/file_system_interface.h

Issue 15650008: drive: Rename drive::DriveClientContext to drive::ClientContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/drive/file_system_interface.h
diff --git a/chrome/browser/chromeos/drive/file_system_interface.h b/chrome/browser/chromeos/drive/file_system_interface.h
index e6c766c16566ca33a36bc4d511b86ca67e702751..2c3bc3753a229180c206e5c44ec689f3450d8fb8 100644
--- a/chrome/browser/chromeos/drive/file_system_interface.h
+++ b/chrome/browser/chromeos/drive/file_system_interface.h
@@ -130,8 +130,8 @@ enum ContextType {
NUM_CONTEXT_TYPES,
};
-struct DriveClientContext {
- explicit DriveClientContext(ContextType in_type) : type(in_type) {}
+struct ClientContext {
+ explicit ClientContext(ContextType in_type) : type(in_type) {}
ContextType type;
};
@@ -331,7 +331,7 @@ class FileSystemInterface {
// |get_content_callback| may be null.
virtual void GetFileByResourceId(
const std::string& resource_id,
- const DriveClientContext& context,
+ const ClientContext& context,
const GetFileCallback& get_file_callback,
const google_apis::GetContentCallback& get_content_callback) = 0;
@@ -362,7 +362,7 @@ class FileSystemInterface {
// |callback| must not be null.
virtual void UpdateFileByResourceId(
const std::string& resource_id,
- const DriveClientContext& context,
+ const ClientContext& context,
const FileOperationCallback& callback) = 0;
// Finds an entry (a file or a directory) by |file_path|. This call will also

Powered by Google App Engine
This is Rietveld 408576698