| Index: google_apis/drive/drive_common_callbacks.h
|
| diff --git a/google_apis/drive/drive_common_callbacks.h b/google_apis/drive/drive_common_callbacks.h
|
| index db2a7aee9b1ac5618ae6ca90cf2ec910a58d4d7f..087903333c71370baedf795119a3322dd8096698 100644
|
| --- a/google_apis/drive/drive_common_callbacks.h
|
| +++ b/google_apis/drive/drive_common_callbacks.h
|
| @@ -16,27 +16,27 @@ class AboutResource;
|
| class AppList;
|
|
|
| // Callback used for getting AboutResource.
|
| -typedef base::Callback<void(GDataErrorCode error,
|
| +typedef base::Callback<void(DriveApiErrorCode error,
|
| scoped_ptr<AboutResource> about_resource)>
|
| AboutResourceCallback;
|
|
|
| // Callback used for getting ShareUrl.
|
| -typedef base::Callback<void(GDataErrorCode error,
|
| +typedef base::Callback<void(DriveApiErrorCode error,
|
| const GURL& share_url)> GetShareUrlCallback;
|
|
|
| // Callback used for getting AppList.
|
| -typedef base::Callback<void(GDataErrorCode error,
|
| +typedef base::Callback<void(DriveApiErrorCode error,
|
| scoped_ptr<AppList> app_list)> AppListCallback;
|
|
|
| // Callback used for authorizing an app. |open_url| is used to open the target
|
| // file with the authorized app.
|
| -typedef base::Callback<void(GDataErrorCode error,
|
| +typedef base::Callback<void(DriveApiErrorCode error,
|
| const GURL& open_url)>
|
| AuthorizeAppCallback;
|
|
|
| // Closure for canceling a certain request. Each request-issuing method returns
|
| // this type of closure. If it is called during the request is in-flight, the
|
| -// callback passed with the request is invoked with GDATA_CANCELLED. If the
|
| +// callback passed with the request is invoked with DRIVE_CANCELLED. If the
|
| // request is already finished, nothing happens.
|
| typedef base::Closure CancelCallback;
|
|
|
|
|