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

Side by Side Diff: google_apis/drive/drive_common_callbacks.h

Issue 96413002: Move c/b/google_apis to google_apis/drive. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years 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
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 // This file contains callback types used for communicating with the Drive 5 // This file contains callback types used for communicating with the Drive
6 // server via WAPI (Documents List API) and Drive API. 6 // server via WAPI (Documents List API) and Drive API.
7 7
8 #ifndef CHROME_BROWSER_GOOGLE_APIS_DRIVE_COMMON_CALLBACKS_H_ 8 #ifndef GOOGLE_APIS_DRIVE_DRIVE_COMMON_CALLBACKS_H_
9 #define CHROME_BROWSER_GOOGLE_APIS_DRIVE_COMMON_CALLBACKS_H_ 9 #define GOOGLE_APIS_DRIVE_DRIVE_COMMON_CALLBACKS_H_
10 10
11 #include "chrome/browser/google_apis/base_requests.h" 11 #include "google_apis/drive/base_requests.h"
12 12
13 namespace google_apis { 13 namespace google_apis {
14 14
15 class AboutResource; 15 class AboutResource;
16 class AppList; 16 class AppList;
17 class ResourceEntry; 17 class ResourceEntry;
18 class ResourceList; 18 class ResourceList;
19 19
20 // Callback used for getting ResourceList. 20 // Callback used for getting ResourceList.
21 typedef base::Callback<void(GDataErrorCode error, 21 typedef base::Callback<void(GDataErrorCode error,
(...skipping 30 matching lines...) Expand all
52 AuthorizeAppCallback; 52 AuthorizeAppCallback;
53 53
54 // Closure for canceling a certain request. Each request-issuing method returns 54 // Closure for canceling a certain request. Each request-issuing method returns
55 // this type of closure. If it is called during the request is in-flight, the 55 // this type of closure. If it is called during the request is in-flight, the
56 // callback passed with the request is invoked with GDATA_CANCELLED. If the 56 // callback passed with the request is invoked with GDATA_CANCELLED. If the
57 // request is already finished, nothing happens. 57 // request is already finished, nothing happens.
58 typedef base::Closure CancelCallback; 58 typedef base::Closure CancelCallback;
59 59
60 } // namespace google_apis 60 } // namespace google_apis
61 61
62 #endif // CHROME_BROWSER_GOOGLE_APIS_DRIVE_COMMON_CALLBACKS_H_ 62 #endif // GOOGLE_APIS_DRIVE_DRIVE_COMMON_CALLBACKS_H_
OLDNEW
« no previous file with comments | « google_apis/drive/drive_api_url_generator_unittest.cc ('k') | google_apis/drive/drive_entry_kinds.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698