Index: chrome/browser/browser_process_impl.cc |
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc |
index 2d32b62f6a58a31fe003e1aca87cfcefbd541823..d8b45ea7e43e8c4f67b0fbb05e0a71cec1fa4f89 100644 |
--- a/chrome/browser/browser_process_impl.cc |
+++ b/chrome/browser/browser_process_impl.cc |
@@ -861,13 +861,14 @@ BrowserProcessImpl::component_updater() { |
if (!component_updater_.get()) { |
if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) |
return NULL; |
- component_updater::Configurator* configurator = |
+ update_client::Configurator* configurator = |
component_updater::MakeChromeComponentUpdaterConfigurator( |
base::CommandLine::ForCurrentProcess(), |
io_thread()->system_url_request_context_getter()); |
// Creating the component updater does not do anything, components |
// need to be registered and Start() needs to be called. |
- component_updater_.reset(ComponentUpdateServiceFactory(configurator)); |
+ component_updater_.reset( |
+ component_updater::ComponentUpdateServiceFactory(configurator)); |
} |
return component_updater_.get(); |
} |