diff options
-rw-r--r-- | chrome/app/chromium_strings.grd | 2 | ||||
-rw-r--r-- | chrome/app/generated_resources.grd | 2 | ||||
-rw-r--r-- | chrome/app/google_chrome_strings.grd | 2 | ||||
-rw-r--r-- | chrome/browser/ui/webui/sync_promo/sync_promo_handler.cc | 2 | ||||
-rw-r--r-- | chrome/browser/ui/webui/sync_promo/sync_promo_handler2.cc | 2 | ||||
-rw-r--r-- | chrome/browser/ui/webui/sync_promo/sync_promo_ui.h | 2 | ||||
-rw-r--r-- | chrome/common/url_constants.cc | 4 |
7 files changed, 8 insertions, 8 deletions
diff --git a/chrome/app/chromium_strings.grd b/chrome/app/chromium_strings.grd index 9f1cf0f..df00d72 100644 --- a/chrome/app/chromium_strings.grd +++ b/chrome/app/chromium_strings.grd @@ -684,7 +684,7 @@ The extension "<ph name="EXTENSION_NAME">$1<ex>Gmail Checker</ex></ph>" has been </message> </if> - <!-- Sync promo page chrome://syncpromo --> + <!-- Sync promo page chrome://signin --> <message name="IDS_SYNC_PROMO_V_LEARN_MORE" desc="Learn more link at the bottom of the sync promo."> See <ph name="BEGIN_LINK"><a target="_blank" href="$1"></ph>more benefits<ph name="END_LINK"></a></ph> of signing in to Chromium. </message> diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index 05b52f7..3a9bdf4 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -11037,7 +11037,7 @@ Some features may be unavailable. Please check that the profile exists and you </message> </if> - <!-- Sync promo page chrome://syncpromo --> + <!-- Sync promo page chrome://signin --> <message name="IDS_SYNC_PROMO_TAB_TITLE" desc="The title of the sync promo tab."> Sign in </message> diff --git a/chrome/app/google_chrome_strings.grd b/chrome/app/google_chrome_strings.grd index 5d6e860..9f977a2 100644 --- a/chrome/app/google_chrome_strings.grd +++ b/chrome/app/google_chrome_strings.grd @@ -670,7 +670,7 @@ The extension "<ph name="EXTENSION_NAME">$1<ex>Gmail Checker</ex></ph>" has been </message> </if> - <!-- Sync promo page chrome://syncpromo --> + <!-- Sync promo page chrome://signin --> <message name="IDS_SYNC_PROMO_V_LEARN_MORE" desc="Learn more link at the bottom of the sync promo."> See <ph name="BEGIN_LINK"><a target="_blank" href="$1"></ph>more benefits<ph name="END_LINK"></a></ph> of signing in to Chrome. </message> diff --git a/chrome/browser/ui/webui/sync_promo/sync_promo_handler.cc b/chrome/browser/ui/webui/sync_promo/sync_promo_handler.cc index 90029ea..8ec58fc 100644 --- a/chrome/browser/ui/webui/sync_promo/sync_promo_handler.cc +++ b/chrome/browser/ui/webui/sync_promo/sync_promo_handler.cc @@ -91,7 +91,7 @@ void SyncPromoHandler::RegisterMessages() { // time we need to interact with preferences. prefs_ = Profile::FromWebUI(web_ui())->GetPrefs(); DCHECK(prefs_); - // Ignore events from view-source:chrome://syncpromo. + // Ignore events from view-source:chrome://signin. if (!web_ui()->GetWebContents()->GetController().GetActiveEntry()-> IsViewSourceMode()) { // Listen to see if the tab we're in gets closed. diff --git a/chrome/browser/ui/webui/sync_promo/sync_promo_handler2.cc b/chrome/browser/ui/webui/sync_promo/sync_promo_handler2.cc index b638cdc..3aee0bd 100644 --- a/chrome/browser/ui/webui/sync_promo/sync_promo_handler2.cc +++ b/chrome/browser/ui/webui/sync_promo/sync_promo_handler2.cc @@ -88,7 +88,7 @@ WebUIMessageHandler* SyncPromoHandler2::Attach(content::WebUI* web_ui) { // time we need to interact with preferences. prefs_ = Profile::FromWebUI(web_ui)->GetPrefs(); DCHECK(prefs_); - // Ignore events from view-source:chrome://syncpromo. + // Ignore events from view-source:chrome://signin. if (!web_ui->GetWebContents()->GetController().GetActiveEntry()-> IsViewSourceMode()) { // Listen to see if the tab we're in gets closed. diff --git a/chrome/browser/ui/webui/sync_promo/sync_promo_ui.h b/chrome/browser/ui/webui/sync_promo/sync_promo_ui.h index 1b438e0..2a88909 100644 --- a/chrome/browser/ui/webui/sync_promo/sync_promo_ui.h +++ b/chrome/browser/ui/webui/sync_promo/sync_promo_ui.h @@ -11,7 +11,7 @@ class Profile; class PrefService; -// The Web UI handler for chrome://syncpromo. +// The Web UI handler for chrome://signin. class SyncPromoUI : public content::WebUIController { public: enum Version { diff --git a/chrome/common/url_constants.cc b/chrome/common/url_constants.cc index 9fc0112..55d4f78 100644 --- a/chrome/common/url_constants.cc +++ b/chrome/common/url_constants.cc @@ -67,7 +67,7 @@ const char kChromeUISettingsURL[] = "chrome://settings/"; // the UberPage, AKA options2. const char kChromeUISettingsFrameURL[] = "chrome://settings-frame/"; const char kChromeUISSLClientCertificateSelectorURL[] = "chrome://select-cert/"; -const char kChromeUISyncPromoURL[] = "chrome://syncpromo/"; +const char kChromeUISyncPromoURL[] = "chrome://signin/"; const char kChromeUITaskManagerURL[] = "chrome://tasks/"; const char kChromeUITermsURL[] = "chrome://terms/"; const char kChromeUIThumbnailURL[] = "chrome://thumb/"; @@ -175,7 +175,7 @@ const char kChromeUISSLClientCertificateSelectorHost[] = "select-cert"; const char kChromeUIStatsHost[] = "stats"; const char kChromeUISyncHost[] = "sync"; const char kChromeUISyncInternalsHost[] = "sync-internals"; -const char kChromeUISyncPromoHost[] = "syncpromo"; +const char kChromeUISyncPromoHost[] = "signin"; const char kChromeUISyncResourcesHost[] = "syncresources"; const char kChromeUITaskManagerHost[] = "tasks"; const char kChromeUITCMallocHost[] = "tcmalloc"; |