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

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

Issue 12218011: WIP: Implement 5xx Error handling. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 10 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
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_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ 5 #ifndef CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_
6 #define CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ 6 #define CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_
7 7
8 #include "chrome/browser/google_apis/drive_service_interface.h" 8 #include "chrome/browser/google_apis/drive_service_interface.h"
9 9
10 namespace google_apis { 10 namespace google_apis {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 const std::string& resource_id, 67 const std::string& resource_id,
68 const EntryActionCallback& callback) OVERRIDE; 68 const EntryActionCallback& callback) OVERRIDE;
69 virtual void AddNewDirectory( 69 virtual void AddNewDirectory(
70 const std::string& parent_resource_id, 70 const std::string& parent_resource_id,
71 const std::string& directory_name, 71 const std::string& directory_name,
72 const GetResourceEntryCallback& callback) OVERRIDE; 72 const GetResourceEntryCallback& callback) OVERRIDE;
73 virtual void InitiateUpload(const InitiateUploadParams& params, 73 virtual void InitiateUpload(const InitiateUploadParams& params,
74 const InitiateUploadCallback& callback) OVERRIDE; 74 const InitiateUploadCallback& callback) OVERRIDE;
75 virtual void ResumeUpload(const ResumeUploadParams& params, 75 virtual void ResumeUpload(const ResumeUploadParams& params,
76 const ResumeUploadCallback& callback) OVERRIDE; 76 const ResumeUploadCallback& callback) OVERRIDE;
77 virtual void GetUploadState(const UploadMode upload_mode,
78 const FilePath& drive_file_path,
79 const GURL& upload_url,
80 int64 content_length,
81 const ResumeUploadCallback& callback) OVERRIDE;
77 virtual void AuthorizeApp(const GURL& edit_url, 82 virtual void AuthorizeApp(const GURL& edit_url,
78 const std::string& app_id, 83 const std::string& app_id,
79 const AuthorizeAppCallback& callback) OVERRIDE; 84 const AuthorizeAppCallback& callback) OVERRIDE;
80 }; 85 };
81 86
82 } // namespace google_apis 87 } // namespace google_apis
83 88
84 #endif // CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ 89 #endif // CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/google_apis/drive_uploader.cc ('k') | chrome/browser/google_apis/dummy_drive_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698