| Index: chrome/browser/chromeos/gdata/gdata_sync_client.cc
|
| diff --git a/chrome/browser/chromeos/gdata/gdata_sync_client.cc b/chrome/browser/chromeos/gdata/gdata_sync_client.cc
|
| index 516eca6ad2dbfa2097aa46344c7ee683085d57e7..622d376f2d5091e751035b402ea65ea3b57e3860 100644
|
| --- a/chrome/browser/chromeos/gdata/gdata_sync_client.cc
|
| +++ b/chrome/browser/chromeos/gdata/gdata_sync_client.cc
|
| @@ -16,7 +16,7 @@
|
| #include "base/message_loop_proxy.h"
|
| #include "base/threading/sequenced_worker_pool.h"
|
| #include "chrome/browser/chromeos/cros/cros_library.h"
|
| -#include "chrome/browser/chromeos/gdata/gdata.pb.h"
|
| +#include "chrome/browser/chromeos/gdata/drive.pb.h"
|
| #include "chrome/browser/prefs/pref_change_registrar.h"
|
| #include "chrome/browser/prefs/pref_service.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| @@ -323,7 +323,7 @@ void GDataSyncClient::OnGetEntryInfoByResourceId(
|
| const std::string& resource_id,
|
| GDataFileError error,
|
| const FilePath& /* gdata_file_path */,
|
| - scoped_ptr<GDataEntryProto> entry_proto) {
|
| + scoped_ptr<DriveEntryProto> entry_proto) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
|
| if (entry_proto.get() && !entry_proto->has_file_specific_info())
|
| @@ -347,7 +347,7 @@ void GDataSyncClient::OnGetCacheEntry(
|
| const std::string& resource_id,
|
| const std::string& latest_md5,
|
| bool success,
|
| - const GDataCacheEntry& cache_entry) {
|
| + const DriveCacheEntry& cache_entry) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
|
| if (!success) {
|
|
|