Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(895)

Unified Diff: chrome/browser/ui/cocoa/about_window_controller.mm

Issue 9325083: Fix terms of service link in the Mac About window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/about_window_controller.mm
===================================================================
--- chrome/browser/ui/cocoa/about_window_controller.mm (revision 120577)
+++ chrome/browser/ui/cocoa/about_window_controller.mm (working copy)
@@ -733,10 +733,11 @@
// Following Windows. There is one marker in the string for where the terms
// link goes, but the text of the link comes from a second string resources.
std::vector<size_t> url_offsets;
- NSString* about_terms = l10n_util::GetNSStringF(IDS_ABOUT_TERMS_OF_SERVICE,
- string16(),
- string16(),
- &url_offsets);
+ NSString* about_terms = l10n_util::GetNSStringF(
+ IDS_ABOUT_OLD_TERMS_OF_SERVICE,
+ string16(),
+ string16(),
+ &url_offsets);
DCHECK_EQ(url_offsets.size(), 1U);
NSString* terms_link_text =
l10n_util::GetNSStringWithFixup(IDS_TERMS_OF_SERVICE);
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698