| Index: chrome/browser/chromeos/gdata/drive_api_service.h
 | 
| diff --git a/chrome/browser/chromeos/gdata/drive_api_service.h b/chrome/browser/chromeos/gdata/drive_api_service.h
 | 
| index 27a5478b0e8d64ec74a96e7e610a2d7f07b34006..c6d57c4649b2c7e5e088848765e5ddea8ed3bbf6 100644
 | 
| --- a/chrome/browser/chromeos/gdata/drive_api_service.h
 | 
| +++ b/chrome/browser/chromeos/gdata/drive_api_service.h
 | 
| @@ -9,7 +9,7 @@
 | 
|  
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
|  #include "base/memory/weak_ptr.h"
 | 
| -#include "chrome/browser/chromeos/gdata/documents_service_interface.h"
 | 
| +#include "chrome/browser/chromeos/gdata/drive_service_interface.h"
 | 
|  #include "chrome/browser/chromeos/gdata/gdata_operations.h"
 | 
|  #include "chrome/browser/chromeos/gdata/gdata_auth_service.h"
 | 
|  #include "chrome/browser/chromeos/gdata/gdata_errorcode.h"
 | 
| @@ -25,14 +25,14 @@ class GDataOperationRunner;
 | 
|  // This class provides documents feed service calls for Drive V2 API.
 | 
|  // Details of API call are abstracted in each operation class and this class
 | 
|  // works as a thin wrapper for the API.
 | 
| -class DriveAPIService : public DocumentsServiceInterface {
 | 
| +class DriveAPIService : public DriveServiceInterface {
 | 
|   public:
 | 
|    // Instance is usually created by GDataSystemServiceFactory and owned by
 | 
|    // GDataFileSystem.
 | 
|    DriveAPIService();
 | 
|    virtual ~DriveAPIService();
 | 
|  
 | 
| -  // DocumentsServiceInterface Overrides
 | 
| +  // DriveServiceInterface Overrides
 | 
|    virtual void Initialize(Profile* profile) OVERRIDE;
 | 
|    virtual GDataOperationRegistry* operation_registry() const OVERRIDE;
 | 
|    virtual void CancelAll() OVERRIDE;
 | 
| 
 |