| Index: chrome/browser/google_apis/base_operations.h
|
| diff --git a/chrome/browser/google_apis/base_operations.h b/chrome/browser/google_apis/base_operations.h
|
| index df51866158f6596c362f455188799f9f0010ff13..319a790ad6d6ec10f9b5c48fa46eb01f5514e80b 100644
|
| --- a/chrome/browser/google_apis/base_operations.h
|
| +++ b/chrome/browser/google_apis/base_operations.h
|
| @@ -192,8 +192,7 @@ typedef base::Callback<void(GDataErrorCode error)> EntryActionCallback;
|
| class EntryActionOperation : public UrlFetchOperationBase {
|
| public:
|
| EntryActionOperation(OperationRegistry* registry,
|
| - const EntryActionCallback& callback,
|
| - const GURL& document_url);
|
| + const EntryActionCallback& callback);
|
| virtual ~EntryActionOperation();
|
|
|
| protected:
|
| @@ -201,11 +200,8 @@ class EntryActionOperation : public UrlFetchOperationBase {
|
| virtual void ProcessURLFetchResults(const net::URLFetcher* source) OVERRIDE;
|
| virtual void RunCallbackOnPrematureFailure(GDataErrorCode code) OVERRIDE;
|
|
|
| - const GURL& document_url() const { return document_url_; }
|
| -
|
| private:
|
| EntryActionCallback callback_;
|
| - GURL document_url_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(EntryActionOperation);
|
| };
|
|
|