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

Unified Diff: chrome/browser/chromeos/gdata/gdata_protocol_handler.cc

Issue 10836354: Rename GData* to Drive* in gdata.proto (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase. Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/gdata/gdata_protocol_handler.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc b/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc
index 8d85ed2ee58ebbd685aae17b0f0d990c1dbf9ecf..0cf69ad396a5de9461037ac9c28ef9cd17047434 100644
--- a/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc
+++ b/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc
@@ -17,8 +17,8 @@
#include "base/string_util.h"
#include "base/threading/sequenced_worker_pool.h"
#include "base/utf_string_conversions.h"
+#include "chrome/browser/chromeos/gdata/drive.pb.h"
#include "chrome/browser/chromeos/gdata/drive_service_interface.h"
-#include "chrome/browser/chromeos/gdata/gdata.pb.h"
#include "chrome/browser/chromeos/gdata/gdata_directory_service.h"
#include "chrome/browser/chromeos/gdata/gdata_errorcode.h"
#include "chrome/browser/chromeos/gdata/gdata_file_system_interface.h"
@@ -177,7 +177,7 @@ class GDataURLRequestJob : public net::URLRequestJob {
void OnGetEntryInfoByResourceId(const std::string& resource_id,
GDataFileError error,
const FilePath& gdata_file_path,
- scoped_ptr<GDataEntryProto> entry_proto);
+ scoped_ptr<DriveEntryProto> entry_proto);
// Helper methods for ReadRawData to open file and read from its corresponding
// stream in a streaming fashion.
@@ -511,7 +511,7 @@ void GDataURLRequestJob::OnGetEntryInfoByResourceId(
const std::string& resource_id,
GDataFileError error,
const FilePath& gdata_file_path,
- scoped_ptr<GDataEntryProto> entry_proto) {
+ scoped_ptr<DriveEntryProto> entry_proto) {
if (entry_proto.get() && !entry_proto->has_file_specific_info())
error = GDATA_FILE_ERROR_NOT_FOUND;

Powered by Google App Engine
This is Rietveld 408576698