summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorjar@google.com <jar@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-26 23:19:56 +0000
committerjar@google.com <jar@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-26 23:19:56 +0000
commitd7f5ecb907c01450b43762c588da5510694f5c40 (patch)
treee9fc8b7eb4debf44ce1f4e7f53f3d6bb5d0acb20 /chrome
parent1f7987b2f415fd1ac4d580cd68e00d0feb71d822 (diff)
downloadchromium_src-d7f5ecb907c01450b43762c588da5510694f5c40.zip
chromium_src-d7f5ecb907c01450b43762c588da5510694f5c40.tar.gz
chromium_src-d7f5ecb907c01450b43762c588da5510694f5c40.tar.bz2
Rev stats file name to handle backwards incompatibility
There was a format change to this shared-memory file. Mike realized that changing the file name would avoid cross-version conflicts, allowing both new and old versions to run on one machine. Credit for diagnosis and repair goes to Mike (his build is currently horked, so I'm landing for him). bug=4767 r=mbelshe Review URL: http://codereview.chromium.org/12698 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6071 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/common/chrome_constants.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/chrome_constants.cc b/chrome/common/chrome_constants.cc
index b7e9eec..0bd263e 100644
--- a/chrome/common/chrome_constants.cc
+++ b/chrome/common/chrome_constants.cc
@@ -10,10 +10,10 @@ namespace chrome {
const wchar_t kBrowserProcessExecutableName[] = L"chrome.exe";
#if defined(GOOGLE_CHROME_BUILD)
const wchar_t kBrowserAppName[] = L"Chrome";
-const char kStatsFilename[] = "ChromeStats";
+const char kStatsFilename[] = "ChromeStats2";
#else
const wchar_t kBrowserAppName[] = L"Chromium";
-const char kStatsFilename[] = "ChromiumStats";
+const char kStatsFilename[] = "ChromiumStats2";
#endif
const wchar_t kExternalTabWindowClass[] = L"Chrome_ExternalTabContainer";
const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow";