diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-11 23:55:10 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-11 23:55:10 +0000 |
commit | a27a938d8511abfaf89d6e2d0e4d4242c76dffed (patch) | |
tree | 98b133536459106b96a0ee09e0deb94b8d92c4b3 /chrome/common/pref_names.cc | |
parent | 342c2c40bd1729fe985d5a6ee06f6eb28bbcdc22 (diff) | |
download | chromium_src-a27a938d8511abfaf89d6e2d0e4d4242c76dffed.zip chromium_src-a27a938d8511abfaf89d6e2d0e4d4242c76dffed.tar.gz chromium_src-a27a938d8511abfaf89d6e2d0e4d4242c76dffed.tar.bz2 |
Refactor plugin process code in the browser process so that the browser/about:memory/task manager/metrics code doesn't depend on PluginProcessHost pointers. In a future changelist I'll add one central child process registry in the browser process.
Review URL: http://codereview.chromium.org/20196
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9621 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r-- | chrome/common/pref_names.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index f00406d..8c8dc76 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -328,7 +328,7 @@ const wchar_t kStabilityUptimeSec[] = // This is the location of a list of dictionaries of plugin stability stats. const wchar_t kStabilityPluginStats[] = - L"user_experience_metrics.stability.plugin_stats"; + L"user_experience_metrics.stability.plugin_stats2"; // Number of times the renderer has become non-responsive since the last // report. @@ -353,7 +353,7 @@ const wchar_t kStabilityDebuggerNotPresent[] = // The keys below are used for the dictionaries in the // kStabilityPluginStats list. -const wchar_t kStabilityPluginPath[] = L"path"; +const wchar_t kStabilityPluginName[] = L"name"; const wchar_t kStabilityPluginLaunches[] = L"launches"; const wchar_t kStabilityPluginInstances[] = L"instances"; const wchar_t kStabilityPluginCrashes[] = L"crashes"; |