| Index: chrome/installer/util/product.cc
|
| diff --git a/chrome/installer/util/product.cc b/chrome/installer/util/product.cc
|
| index 4f96e13af2cb6a9973b17fc1154eb7622263a11c..a7fbe0fba782af49dadf40fce11d5288b69ffedc 100644
|
| --- a/chrome/installer/util/product.cc
|
| +++ b/chrome/installer/util/product.cc
|
| @@ -4,7 +4,7 @@
|
|
|
| #include "chrome/installer/util/product.h"
|
|
|
| -#include <algorithm>
|
| +#include <string>
|
|
|
| #include "base/command_line.h"
|
| #include "base/logging.h"
|
| @@ -13,9 +13,7 @@
|
| #include "chrome/installer/util/chrome_binaries_operations.h"
|
| #include "chrome/installer/util/chrome_browser_operations.h"
|
| #include "chrome/installer/util/chrome_browser_sxs_operations.h"
|
| -#include "chrome/installer/util/chrome_frame_operations.h"
|
| #include "chrome/installer/util/google_update_constants.h"
|
| -#include "chrome/installer/util/helper.h"
|
| #include "chrome/installer/util/install_util.h"
|
| #include "chrome/installer/util/master_preferences.h"
|
| #include "chrome/installer/util/master_preferences_constants.h"
|
| @@ -34,9 +32,6 @@ Product::Product(BrowserDistribution* distribution)
|
| new ChromeBrowserSxSOperations() :
|
| new ChromeBrowserOperations());
|
| break;
|
| - case BrowserDistribution::CHROME_FRAME:
|
| - operations_.reset(new ChromeFrameOperations());
|
| - break;
|
| case BrowserDistribution::CHROME_BINARIES:
|
| operations_.reset(new ChromeBinariesOperations());
|
| break;
|
| @@ -135,10 +130,6 @@ void Product::AddKeyFiles(std::vector<base::FilePath>* key_files) const {
|
| operations_->AddKeyFiles(options_, key_files);
|
| }
|
|
|
| -void Product::AddComDllList(std::vector<base::FilePath>* com_dll_list) const {
|
| - operations_->AddComDllList(options_, com_dll_list);
|
| -}
|
| -
|
| void Product::AppendProductFlags(base::CommandLine* command_line) const {
|
| operations_->AppendProductFlags(options_, command_line);
|
| }
|
|
|