diff options
author | sorin <sorin@chromium.org> | 2015-01-05 17:09:08 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-06 01:10:07 +0000 |
commit | 39eab2f9d3d0435422f65c6664276fdd72326f89 (patch) | |
tree | 83a3b3e4a880f6928cc59eeb0a04b6dae4fcc317 /chrome/browser/browser_process_impl.cc | |
parent | d5f87c03637894f86fa9565c86d9dac6160c3616 (diff) | |
download | chromium_src-39eab2f9d3d0435422f65c6664276fdd72326f89.zip chromium_src-39eab2f9d3d0435422f65c6664276fdd72326f89.tar.gz chromium_src-39eab2f9d3d0435422f65c6664276fdd72326f89.tar.bz2 |
Rename omaha_client and similar tokens to update_client in all contexts.
This is a mechanical change.
The idea here is to refactor the common code involved in installing
components and extensions in a common module. In the future, we want
more update-related Chrome stuff to go in this module.
Therefore, it is desirable that this module have a name that describes
its purpose.
BUG=445949
Review URL: https://codereview.chromium.org/803313003
Cr-Commit-Position: refs/heads/master@{#310022}
Diffstat (limited to 'chrome/browser/browser_process_impl.cc')
-rw-r--r-- | chrome/browser/browser_process_impl.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc index fa4bc86..8870d79 100644 --- a/chrome/browser/browser_process_impl.cc +++ b/chrome/browser/browser_process_impl.cc @@ -45,7 +45,6 @@ #include "chrome/browser/net/chrome_net_log.h" #include "chrome/browser/net/crl_set_fetcher.h" #include "chrome/browser/notifications/notification_ui_manager.h" -#include "chrome/browser/omaha_client/chrome_omaha_query_params_delegate.h" #include "chrome/browser/plugins/chrome_plugin_service_filter.h" #include "chrome/browser/plugins/plugin_finder.h" #include "chrome/browser/prefs/browser_prefs.h" @@ -62,6 +61,7 @@ #include "chrome/browser/ui/browser_dialogs.h" #include "chrome/browser/ui/browser_finder.h" #include "chrome/browser/ui/user_manager.h" +#include "chrome/browser/update_client/chrome_update_query_params_delegate.h" #include "chrome/browser/web_resource/promo_resource_service.h" #include "chrome/common/chrome_constants.h" #include "chrome/common/chrome_paths.h" @@ -76,10 +76,10 @@ #include "components/gcm_driver/gcm_driver.h" #include "components/metrics/metrics_service.h" #include "components/network_time/network_time_tracker.h" -#include "components/omaha_client/omaha_query_params.h" #include "components/policy/core/common/policy_service.h" #include "components/signin/core/common/profile_management_switches.h" #include "components/translate/core/browser/translate_download_manager.h" +#include "components/update_client/update_query_params.h" #include "components/web_resource/web_resource_pref_names.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/child_process_security_policy.h" @@ -221,8 +221,8 @@ BrowserProcessImpl::BrowserProcessImpl( message_center::MessageCenter::Initialize(); - omaha_client::OmahaQueryParams::SetDelegate( - ChromeOmahaQueryParamsDelegate::GetInstance()); + update_client::UpdateQueryParams::SetDelegate( + ChromeUpdateQueryParamsDelegate::GetInstance()); } BrowserProcessImpl::~BrowserProcessImpl() { |