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

Side by Side Diff: chrome/browser/drive/dummy_drive_service.h

Issue 371883003: Files.app: Add an private API to get a download URL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ 5 #ifndef CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_
6 #define CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ 6 #define CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_
7 7
8 #include "chrome/browser/drive/drive_service_interface.h" 8 #include "chrome/browser/drive/drive_service_interface.h"
9 #include "google_apis/drive/auth_service_interface.h" 9 #include "google_apis/drive/auth_service_interface.h"
10 10
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 const google_apis::ChangeListCallback& callback) OVERRIDE; 50 const google_apis::ChangeListCallback& callback) OVERRIDE;
51 virtual google_apis::CancelCallback GetRemainingFileList( 51 virtual google_apis::CancelCallback GetRemainingFileList(
52 const GURL& next_link, 52 const GURL& next_link,
53 const google_apis::FileListCallback& callback) OVERRIDE; 53 const google_apis::FileListCallback& callback) OVERRIDE;
54 virtual google_apis::CancelCallback GetFileResource( 54 virtual google_apis::CancelCallback GetFileResource(
55 const std::string& resource_id, 55 const std::string& resource_id,
56 const google_apis::FileResourceCallback& callback) OVERRIDE; 56 const google_apis::FileResourceCallback& callback) OVERRIDE;
57 virtual google_apis::CancelCallback GetShareUrl( 57 virtual google_apis::CancelCallback GetShareUrl(
58 const std::string& resource_id, 58 const std::string& resource_id,
59 const GURL& embed_origin, 59 const GURL& embed_origin,
60 const google_apis::GetShareUrlCallback& callback) OVERRIDE; 60 const google_apis::GetUrlCallback& callback) OVERRIDE;
61 virtual google_apis::CancelCallback GetAboutResource( 61 virtual google_apis::CancelCallback GetAboutResource(
62 const google_apis::AboutResourceCallback& callback) OVERRIDE; 62 const google_apis::AboutResourceCallback& callback) OVERRIDE;
63 virtual google_apis::CancelCallback GetAppList( 63 virtual google_apis::CancelCallback GetAppList(
64 const google_apis::AppListCallback& callback) OVERRIDE; 64 const google_apis::AppListCallback& callback) OVERRIDE;
65 virtual google_apis::CancelCallback DeleteResource( 65 virtual google_apis::CancelCallback DeleteResource(
66 const std::string& resource_id, 66 const std::string& resource_id,
67 const std::string& etag, 67 const std::string& etag,
68 const google_apis::EntryActionCallback& callback) OVERRIDE; 68 const google_apis::EntryActionCallback& callback) OVERRIDE;
69 virtual google_apis::CancelCallback TrashResource( 69 virtual google_apis::CancelCallback TrashResource(
70 const std::string& resource_id, 70 const std::string& resource_id,
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 virtual google_apis::CancelCallback AddPermission( 141 virtual google_apis::CancelCallback AddPermission(
142 const std::string& resource_id, 142 const std::string& resource_id,
143 const std::string& email, 143 const std::string& email,
144 google_apis::drive::PermissionRole role, 144 google_apis::drive::PermissionRole role,
145 const google_apis::EntryActionCallback& callback) OVERRIDE; 145 const google_apis::EntryActionCallback& callback) OVERRIDE;
146 }; 146 };
147 147
148 } // namespace drive 148 } // namespace drive
149 149
150 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ 150 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698