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

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

Issue 12286020: Replace FilePath with base::FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | 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_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ 5 #ifndef CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_
6 #define CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ 6 #define CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 const EntryActionCallback& callback) OVERRIDE; 101 const EntryActionCallback& callback) OVERRIDE;
102 virtual void RemoveResourceFromDirectory( 102 virtual void RemoveResourceFromDirectory(
103 const std::string& parent_resource_id, 103 const std::string& parent_resource_id,
104 const std::string& resource_id, 104 const std::string& resource_id,
105 const EntryActionCallback& callback) OVERRIDE; 105 const EntryActionCallback& callback) OVERRIDE;
106 virtual void AddNewDirectory( 106 virtual void AddNewDirectory(
107 const std::string& parent_resource_id, 107 const std::string& parent_resource_id,
108 const std::string& directory_name, 108 const std::string& directory_name,
109 const GetResourceEntryCallback& callback) OVERRIDE; 109 const GetResourceEntryCallback& callback) OVERRIDE;
110 virtual void InitiateUploadNewFile( 110 virtual void InitiateUploadNewFile(
111 const FilePath& drive_file_path, 111 const base::FilePath& drive_file_path,
112 const std::string& content_type, 112 const std::string& content_type,
113 int64 content_length, 113 int64 content_length,
114 const GURL& parent_upload_url, 114 const GURL& parent_upload_url,
115 const std::string& title, 115 const std::string& title,
116 const InitiateUploadCallback& callback) OVERRIDE; 116 const InitiateUploadCallback& callback) OVERRIDE;
117 virtual void InitiateUploadExistingFile( 117 virtual void InitiateUploadExistingFile(
118 const FilePath& drive_file_path, 118 const base::FilePath& drive_file_path,
119 const std::string& content_type, 119 const std::string& content_type,
120 int64 content_length, 120 int64 content_length,
121 const GURL& upload_url, 121 const GURL& upload_url,
122 const std::string& etag, 122 const std::string& etag,
123 const InitiateUploadCallback& callback) OVERRIDE; 123 const InitiateUploadCallback& callback) OVERRIDE;
124 virtual void ResumeUpload( 124 virtual void ResumeUpload(
125 const ResumeUploadParams& params, 125 const ResumeUploadParams& params,
126 const UploadRangeCallback& callback) OVERRIDE; 126 const UploadRangeCallback& callback) OVERRIDE;
127 virtual void GetUploadStatus( 127 virtual void GetUploadStatus(
128 UploadMode upload_mode, 128 UploadMode upload_mode,
(...skipping 23 matching lines...) Expand all
152 // reference, as they may outlive this object. 152 // reference, as they may outlive this object.
153 const GDataWapiUrlGenerator url_generator_; 153 const GDataWapiUrlGenerator url_generator_;
154 const std::string custom_user_agent_; 154 const std::string custom_user_agent_;
155 155
156 DISALLOW_COPY_AND_ASSIGN(GDataWapiService); 156 DISALLOW_COPY_AND_ASSIGN(GDataWapiService);
157 }; 157 };
158 158
159 } // namespace google_apis 159 } // namespace google_apis
160 160
161 #endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ 161 #endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/google_apis/fake_drive_service.cc ('k') | chrome/browser/google_apis/gdata_wapi_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698