diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-17 19:04:12 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-17 19:04:12 +0000 |
commit | afe3a16739185a648a21a34e07f3cdb5f1a23c2f (patch) | |
tree | 4c82ce550948ed3d67a7a46a1aa066c9080412fb /chrome/browser/options_page_base.h | |
parent | d699e3a52d6431ea5d2a691f77866ac8ec7ba350 (diff) | |
download | chromium_src-afe3a16739185a648a21a34e07f3cdb5f1a23c2f.zip chromium_src-afe3a16739185a648a21a34e07f3cdb5f1a23c2f.tar.gz chromium_src-afe3a16739185a648a21a34e07f3cdb5f1a23c2f.tar.bz2 |
Use plain strings instead of wstrings for UMA actions
git grep 'RecordAction(L' | xargs sed -i -e s/RecordAction(L/RecordAction(/
This cuts more than 10k off my binary. Which is nothing compared
to the size of the binary, but that's a whole lot of zero bytes!
This is less code this way anyway.
Review URL: http://codereview.chromium.org/399026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32194 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/options_page_base.h')
-rw-r--r-- | chrome/browser/options_page_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/options_page_base.h b/chrome/browser/options_page_base.h index dd79767..6aac9c2 100644 --- a/chrome/browser/options_page_base.h +++ b/chrome/browser/options_page_base.h @@ -37,7 +37,7 @@ class OptionsPageBase : public NotificationObserver { Profile* profile() const { return profile_; } // Records a user action and schedules the prefs file to be saved. - void UserMetricsRecordAction(const wchar_t* action, PrefService* prefs); + void UserMetricsRecordAction(const char* action, PrefService* prefs); // Allows the UI to update when a preference value changes. The parameter is // the specific pref that changed, or NULL if all pref UI should be |