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

Unified Diff: chrome/browser/chromeos/gdata/operations_base.h

Issue 10828385: Rename DocumentsServiceInterface to DriveServiceInterface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unnecessary includes. Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/gdata/operations_base.h
diff --git a/chrome/browser/chromeos/gdata/operations_base.h b/chrome/browser/chromeos/gdata/operations_base.h
index 5b480f8437ca4ad20fd7daf2949d38b14ad702a6..60f8121b7e967849dd155bf06285c21656c386b7 100644
--- a/chrome/browser/chromeos/gdata/operations_base.h
+++ b/chrome/browser/chromeos/gdata/operations_base.h
@@ -23,7 +23,7 @@ namespace gdata {
//================================ AuthOperation ===============================
-// Callback type for authentication related DocumentService calls.
+// Callback type for authentication related DriveServiceInterface calls.
typedef base::Callback<void(GDataErrorCode error,
const std::string& token)> AuthStatusCallback;
@@ -55,10 +55,10 @@ class AuthOperation : public GDataOperationRegistry::Operation,
//=========================== GDataOperationInterface ==========================
-// An interface for implementing an operation used by DocumentsService.
+// An interface for implementing an operation used by DriveServiceInterface.
class GDataOperationInterface {
public:
- // Callback to DocumentsService upon for re-authentication.
+ // Callback to DriveServiceInterface upon for re-authentication.
typedef base::Callback<void(GDataOperationInterface* operation)>
ReAuthenticateCallback;
@@ -71,8 +71,8 @@ class GDataOperationInterface {
// Invoked when the authentication failed with an error code |code|.
virtual void OnAuthFailed(GDataErrorCode code) = 0;
- // Sets the callback to DocumentsService when the operation restarts due to
- // an authentication failure.
+ // Sets the callback to DriveServiceInterface when the operation restarts due
+ // to an authentication failure.
virtual void SetReAuthenticateCallback(
const ReAuthenticateCallback& callback) = 0;
};
« no previous file with comments | « chrome/browser/chromeos/gdata/mock_drive_service.cc ('k') | chrome/browser/chromeos/system/ash_system_tray_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698