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

Unified Diff: chrome/browser/google_apis/request_registry.cc

Issue 17415007: Get rid of RequestRegistry (part 3): remove Drive path from request objects. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 6 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
« no previous file with comments | « chrome/browser/google_apis/request_registry.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/google_apis/request_registry.cc
diff --git a/chrome/browser/google_apis/request_registry.cc b/chrome/browser/google_apis/request_registry.cc
index bc8bc0c156d48d3e0b3d258d1905115ec1cad345..9c247c5cabbc58083a5cd2dca281ea29f476a711 100644
--- a/chrome/browser/google_apis/request_registry.cc
+++ b/chrome/browser/google_apis/request_registry.cc
@@ -10,21 +10,13 @@ using content::BrowserThread;
namespace google_apis {
-RequestProgressStatus::RequestProgressStatus(const base::FilePath& path)
+RequestProgressStatus::RequestProgressStatus()
: request_id(-1),
- file_path(path),
transfer_state(REQUEST_NOT_STARTED) {
}
RequestRegistry::Request::Request(RequestRegistry* registry)
- : registry_(registry),
- progress_status_(base::FilePath()) {
-}
-
-RequestRegistry::Request::Request(RequestRegistry* registry,
- const base::FilePath& path)
- : registry_(registry),
- progress_status_(path) {
+ : registry_(registry) {
}
RequestRegistry::Request::~Request() {
« no previous file with comments | « chrome/browser/google_apis/request_registry.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698