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

Unified Diff: chrome/browser/google_apis/base_operations.h

Issue 11419221: google_apis: Remove document_url_ from EntryActionOperation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/google_apis/base_operations.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « no previous file | chrome/browser/google_apis/base_operations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698