diff options
author | tbansal <tbansal@chromium.org> | 2015-08-19 12:55:33 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-08-19 19:56:21 +0000 |
commit | dafbb3e7092bbee382e2de11f0da66849895474a (patch) | |
tree | 37fdb336c6df38c2bf900061425851d85982da14 /chrome/browser/android/chrome_jni_registrar.cc | |
parent | 03b41bafee68ac147cc6b679c63bbf6971167f35 (diff) | |
download | chromium_src-dafbb3e7092bbee382e2de11f0da66849895474a.zip chromium_src-dafbb3e7092bbee382e2de11f0da66849895474a.tar.gz chromium_src-dafbb3e7092bbee382e2de11f0da66849895474a.tar.bz2 |
Renamed NQP to EEPAndroid
Renamed NetworkQualityProvider to
ExternalEstimateProviderAndroid. This CL does not affect
any functionality and is a simply a rename of variables,
classes and files. This change makes it clearer that
/net/base/external_estimate_provider.h is the base class
and chrome/browser/android/net/external_estimate_provider_android.h
is the implementation on Android.
Thanks to mmenke, bengr, rdsmith and pauljensen for suggesting this
in a previous discussion.
BUG=472685
Review URL: https://codereview.chromium.org/1299553002
Cr-Commit-Position: refs/heads/master@{#344309}
Diffstat (limited to 'chrome/browser/android/chrome_jni_registrar.cc')
-rw-r--r-- | chrome/browser/android/chrome_jni_registrar.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/android/chrome_jni_registrar.cc b/chrome/browser/android/chrome_jni_registrar.cc index 43427e7..fe4e34f 100644 --- a/chrome/browser/android/chrome_jni_registrar.cc +++ b/chrome/browser/android/chrome_jni_registrar.cc @@ -51,7 +51,7 @@ #include "chrome/browser/android/metrics/uma_utils.h" #include "chrome/browser/android/metrics/variations_session.h" #include "chrome/browser/android/most_visited_sites.h" -#include "chrome/browser/android/net/network_quality_provider.h" +#include "chrome/browser/android/net/external_estimate_provider_android.h" #include "chrome/browser/android/new_tab_page_prefs.h" #include "chrome/browser/android/offline_pages/offline_page_bridge.h" #include "chrome/browser/android/omnibox/answers_image_bridge.h" @@ -261,7 +261,8 @@ static base::android::RegistrationMethod kChromeRegisteredMethods[] = { {"MostVisitedSites", MostVisitedSites::Register}, {"NativeInfoBar", RegisterNativeInfoBar}, {"NavigationPopup", NavigationPopup::RegisterNavigationPopup}, - {"NetworkQualityProvider", RegisterNetworkQualityProvider}, + {"ExternalEstimateProviderAndroid", + RegisterExternalEstimateProviderAndroid}, {"NewTabPagePrefs", NewTabPagePrefs::RegisterNewTabPagePrefs}, {"NotificationUIManager", NotificationUIManagerAndroid::RegisterNotificationUIManager}, |