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

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: rebase 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 13c715673423ae51f15652934713e793e0ee48c2..e9744ceaa7c693375b2b2a84ef1c446f2aaaad30 100644
--- a/chrome/browser/chromeos/drive/file_system_interface.h
+++ b/chrome/browser/chromeos/drive/file_system_interface.h
@@ -126,8 +126,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;
};
@@ -327,7 +327,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;
@@ -358,7 +358,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