summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/imageburner
diff options
context:
space:
mode:
authorhashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-09 04:49:56 +0000
committerhashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-09 04:49:56 +0000
commita9645509174f6a799b0b8f336b8cb06132933692 (patch)
tree7e32f5e94beef80ed00364bd438bc9987d22a86f /chrome/browser/chromeos/imageburner
parentc826d738c0cf7e5e1822664dec01c58ece6cd699 (diff)
downloadchromium_src-a9645509174f6a799b0b8f336b8cb06132933692.zip
chromium_src-a9645509174f6a799b0b8f336b8cb06132933692.tar.gz
chromium_src-a9645509174f6a799b0b8f336b8cb06132933692.tar.bz2
Remove unused BurnManager::final_zip_path
BUG=None TEST=None Review URL: http://codereview.chromium.org/9296044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121189 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/imageburner')
-rw-r--r--chrome/browser/chromeos/imageburner/burn_controller.cc1
-rw-r--r--chrome/browser/chromeos/imageburner/burn_manager.h7
2 files changed, 0 insertions, 8 deletions
diff --git a/chrome/browser/chromeos/imageburner/burn_controller.cc b/chrome/browser/chromeos/imageburner/burn_controller.cc
index f2ae353..cf6a247 100644
--- a/chrome/browser/chromeos/imageburner/burn_controller.cc
+++ b/chrome/browser/chromeos/imageburner/burn_controller.cc
@@ -147,7 +147,6 @@ class BurnControllerImpl
DownloadCompleted(false);
DCHECK(!active_download_item_);
} else if (download->IsComplete()) {
- burn_manager_->set_final_zip_file_path(download->GetFullPath());
DownloadCompleted(true);
DCHECK(!active_download_item_);
} else if (download->IsPartialDownload() &&
diff --git a/chrome/browser/chromeos/imageburner/burn_manager.h b/chrome/browser/chromeos/imageburner/burn_manager.h
index a819a6a..d28a1f16 100644
--- a/chrome/browser/chromeos/imageburner/burn_manager.h
+++ b/chrome/browser/chromeos/imageburner/burn_manager.h
@@ -253,15 +253,9 @@ class BurnManager
target_file_path_ = path;
}
- const FilePath& final_zip_file_path() {return final_zip_file_path_; }
- void set_final_zip_file_path(const FilePath& path) {
- final_zip_file_path_ = path;
- }
-
void ResetTargetPaths() {
target_device_path_.clear();
target_file_path_.clear();
- final_zip_file_path_.clear();
}
StateMachine* state_machine() const { return state_machine_.get(); }
@@ -286,7 +280,6 @@ class BurnManager
FilePath target_device_path_;
FilePath target_file_path_;
FilePath config_file_path_;
- FilePath final_zip_file_path_;
content::DownloadManager* download_manager_;
bool download_item_observer_added_;