summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/spelling_bubble_model.cc
diff options
context:
space:
mode:
authorderat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-29 08:58:22 +0000
committerderat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-29 08:58:22 +0000
commitadc8e85a8f784d724a3edd6f777b05ca64ab312a (patch)
tree1adfaf6aecb75a8acd61388e5bb3561ff324226a /chrome/browser/tab_contents/spelling_bubble_model.cc
parent8d2bbd66c39aa63173e1819fa41dab7cf6f5c371 (diff)
downloadchromium_src-adc8e85a8f784d724a3edd6f777b05ca64ab312a.zip
chromium_src-adc8e85a8f784d724a3edd6f777b05ca64ab312a.tar.gz
chromium_src-adc8e85a8f784d724a3edd6f777b05ca64ab312a.tar.bz2
Update a bunch of help center URLs.
This updates the first wave of links from https://www.google.com/support/chrome paths to https://support.google.com/chrome. We also don't need locale parameters on these links. BUG=111556 TEST=manual TBR=dhollowa Review URL: http://codereview.chromium.org/9234077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119635 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/spelling_bubble_model.cc')
-rw-r--r--chrome/browser/tab_contents/spelling_bubble_model.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/tab_contents/spelling_bubble_model.cc b/chrome/browser/tab_contents/spelling_bubble_model.cc
index f3af4cb..b9c9ae3 100644
--- a/chrome/browser/tab_contents/spelling_bubble_model.cc
+++ b/chrome/browser/tab_contents/spelling_bubble_model.cc
@@ -5,7 +5,6 @@
#include "chrome/browser/tab_contents/spelling_bubble_model.h"
#include "base/logging.h"
-#include "chrome/browser/google/google_util.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser_list.h"
@@ -63,7 +62,7 @@ string16 SpellingBubbleModel::GetLinkText() const {
void SpellingBubbleModel::LinkClicked() {
Browser* browser = BrowserList::GetLastActiveWithProfile(profile_);
OpenURLParams params(
- google_util::AppendGoogleLocaleParam(GURL(chrome::kPrivacyLearnMoreURL)),
- Referrer(), NEW_FOREGROUND_TAB, content::PAGE_TRANSITION_LINK, false);
+ GURL(chrome::kPrivacyLearnMoreURL), Referrer(), NEW_FOREGROUND_TAB,
+ content::PAGE_TRANSITION_LINK, false);
browser->OpenURL(params);
}