AU: Gut code for old updater. New protobuf for v2 updater.

Review URL: http://codereview.chromium.org/545072
diff --git a/download_action.cc b/download_action.cc
index 833f806..6da6719 100644
--- a/download_action.cc
+++ b/download_action.cc
@@ -31,7 +31,7 @@
 
   should_decompress_ = install_plan.is_full_update;
   url_ = install_plan.download_url;
-  output_path_ = install_plan.download_path;
+  output_path_ = install_plan.install_path;
   hash_ = install_plan.download_hash;
   install_plan.Dump();
 
@@ -39,7 +39,6 @@
     decompressing_file_writer_.reset(
         new GzipDecompressingFileWriter(direct_file_writer_.get()));
     writer_ = decompressing_file_writer_.get();
-    output_path_ = install_plan.install_path;
   } else {
     writer_ = direct_file_writer_.get();
   }