summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-31 23:38:55 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-31 23:38:55 +0000
commitdaa5b6292c3a731dbe88501712d1d11290957a00 (patch)
treee0e354b9ce646a1998591829520caa45c7aa5cf2 /chrome/browser
parent7018c5f36a4d880425c0739ddfbb954a1cf042c4 (diff)
downloadchromium_src-daa5b6292c3a731dbe88501712d1d11290957a00.zip
chromium_src-daa5b6292c3a731dbe88501712d1d11290957a00.tar.gz
chromium_src-daa5b6292c3a731dbe88501712d1d11290957a00.tar.bz2
Fix some character literals to use the right escape string.
BUG=none TEST=none Review URL: http://codereview.chromium.org/159714 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22222 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/search_engines/template_url_prepopulate_data.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/search_engines/template_url_prepopulate_data.cc b/chrome/browser/search_engines/template_url_prepopulate_data.cc
index 1c97eec..c27ccac 100644
--- a/chrome/browser/search_engines/template_url_prepopulate_data.cc
+++ b/chrome/browser/search_engines/template_url_prepopulate_data.cc
@@ -2219,7 +2219,7 @@ const PrepopulatedEngine yahoo_vn = {
};
const PrepopulatedEngine yam = {
- L"\u5929\u7a7a",
+ L"\x5929\x7a7a",
L"yam.com",
"http://www.yam.com/i/8/sky.ico",
L"http://search.yam.com/wps?k={searchTerms}",
@@ -3185,7 +3185,7 @@ void RegisterUserPrefs(PrefService* prefs) {
}
int GetDataVersion() {
- return 22; // Increment this if you change the above data in ways that mean
+ return 23; // Increment this if you change the above data in ways that mean
// users with existing data should get a new version.
}