Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: tools/metrics/histograms/histograms.xml

Issue 13548005: Add UMA reporting on failure to load ppapi plugins. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2013 The Chromium Authors. All rights reserved. 2 Copyright 2013 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <!-- 7 <!--
8 This file is used to generate a comprehensive list of Chrome histograms along 8 This file is used to generate a comprehensive list of Chrome histograms along
9 with a detailed description for each histogram. 9 with a detailed description for each histogram.
10 10
(...skipping 2582 matching lines...) Expand 10 before | Expand all | Expand 10 after
2593 </histogram> 2593 </histogram>
2594 2594
2595 <histogram name="PLT.StartToFinish" units="milliseconds"> 2595 <histogram name="PLT.StartToFinish" units="milliseconds">
2596 <summary> 2596 <summary>
2597 Time from &quot;start&quot; to &quot;finish.&quot; &quot;Start&quot;== time 2597 Time from &quot;start&quot; to &quot;finish.&quot; &quot;Start&quot;== time
2598 when renderer requested load of document, after any unload of last document. 2598 when renderer requested load of document, after any unload of last document.
2599 &quot;Finish&quot;==after onload() and all resources are loaded. 2599 &quot;Finish&quot;==after onload() and all resources are loaded.
2600 </summary> 2600 </summary>
2601 </histogram> 2601 </histogram>
2602 2602
2603 <histogram name="Plugin.PpapiBrokerLoadResult" enum="PluginLoadResult">
2604 <summary>The result from an attempt to load a PPAPI broker.</summary>
2605 </histogram>
2606
2607 <histogram name="Plugin.PpapiPluginLoadResult" enum="PluginLoadResult">
2608 <summary>The result from an attempt to load a PPAPI plugin.</summary>
2609 </histogram>
2610
2603 <histogram name="Prerender.FinalStatus" enum="PrerenderFinalStatus"> 2611 <histogram name="Prerender.FinalStatus" enum="PrerenderFinalStatus">
2604 <summary> 2612 <summary>
2605 Final status for prerender pages - either success, or why it was canceled. 2613 Final status for prerender pages - either success, or why it was canceled.
2606 </summary> 2614 </summary>
2607 </histogram> 2615 </histogram>
2608 2616
2609 <histogram name="Prerender.FinalStatusMatchComplete" 2617 <histogram name="Prerender.FinalStatusMatchComplete"
2610 enum="PrerenderFinalStatus"> 2618 enum="PrerenderFinalStatus">
2611 <summary> 2619 <summary>
2612 Final status for prerender pages - either success, or why it was canceled. 2620 Final status for prerender pages - either success, or why it was canceled.
(...skipping 2266 matching lines...) Expand 10 before | Expand all | Expand 10 after
4879 <int value="8" label="NO_SPACE"/> 4887 <int value="8" label="NO_SPACE"/>
4880 <int value="9" label="NOT_A_DIRECTORY"/> 4888 <int value="9" label="NOT_A_DIRECTORY"/>
4881 <int value="10" label="INVALID_OPERATION"/> 4889 <int value="10" label="INVALID_OPERATION"/>
4882 <int value="11" label="SECURITY"/> 4890 <int value="11" label="SECURITY"/>
4883 <int value="12" label="ABORT"/> 4891 <int value="12" label="ABORT"/>
4884 <int value="13" label="NOT_A_FILE"/> 4892 <int value="13" label="NOT_A_FILE"/>
4885 <int value="14" label="NOT_EMPTY"/> 4893 <int value="14" label="NOT_EMPTY"/>
4886 <int value="15" label="INVALID_URL"/> 4894 <int value="15" label="INVALID_URL"/>
4887 </enum> 4895 </enum>
4888 4896
4897 <enum name="PluginLoadResult" type="int">
4898 <int value="0" label="LOAD_SUCCESS"/>
4899 <int value="1" label="LOAD_FAILED"/>
4900 <int value="2" label="ENTRY_POINT_MISSING"/>
4901 <int value="3" label="INIT_FAILED"/>
4902 </enum>
4903
4889 <enum name="PreconnectMotivation" type="int"> 4904 <enum name="PreconnectMotivation" type="int">
4890 <int value="0" label="MOUSE_OVER_MOTIVATED"/> 4905 <int value="0" label="MOUSE_OVER_MOTIVATED"/>
4891 <int value="1" label="PAGE_SCAN_MOTIVATED"/> 4906 <int value="1" label="PAGE_SCAN_MOTIVATED"/>
4892 <int value="2" label="UNIT_TEST_MOTIVATED"/> 4907 <int value="2" label="UNIT_TEST_MOTIVATED"/>
4893 <int value="3" label="LINKED_MAX_MOTIVATED"/> 4908 <int value="3" label="LINKED_MAX_MOTIVATED"/>
4894 <int value="4" label="OMNIBOX_MOTIVATED"/> 4909 <int value="4" label="OMNIBOX_MOTIVATED"/>
4895 <int value="5" label="STARTUP_LIST_MOTIVATED"/> 4910 <int value="5" label="STARTUP_LIST_MOTIVATED"/>
4896 <int value="6" label="EARLY_LOAD_MOTIVATED"/> 4911 <int value="6" label="EARLY_LOAD_MOTIVATED"/>
4897 <int value="7" label="NO_PREFETCH_MOTIVATION"/> 4912 <int value="7" label="NO_PREFETCH_MOTIVATION"/>
4898 <int value="8" label="STATIC_REFERAL_MOTIVATED"/> 4913 <int value="8" label="STATIC_REFERAL_MOTIVATED"/>
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
5390 <with-group name="NormalLoad"/> 5405 <with-group name="NormalLoad"/>
5391 </affected-histogram> 5406 </affected-histogram>
5392 <affected-histogram name="PLT.StartToFinish"> 5407 <affected-histogram name="PLT.StartToFinish">
5393 <with-group name="LinkLoadNormal"/> 5408 <with-group name="LinkLoadNormal"/>
5394 <with-group name="NormalLoad"/> 5409 <with-group name="NormalLoad"/>
5395 </affected-histogram> 5410 </affected-histogram>
5396 <affected-histogram name="Renderer4.BeginToFinish"/> 5411 <affected-histogram name="Renderer4.BeginToFinish"/>
5397 <affected-histogram name="Renderer4.BeginToFinishDoc"/> 5412 <affected-histogram name="Renderer4.BeginToFinishDoc"/>
5398 </fieldtrial> 5413 </fieldtrial>
5399 5414
5415 <fieldtrial name="PpapiPluginName">
5416 <group name="libpepflashplayer.so" label="Flash player on Linux or Cros"/>
5417 <group name="libwidevinecdmadapter.so" label="Widevine CDM on Linux or Cros"/>
5418 <group name="pepflashplayer.dll" label="Flash player on Windows"/>
5419 <group name="PepperFlashPlayer.plugin" label="Flash player on Mac"/>
5420 <group name="widevinecdmadapter.dll" label="Widevine CDM on Windows"/>
5421 <group name="widevinecdmadapter.plugin" label="Widevine CDM on Mac"/>
5422 <affected-histogram name="Plugin.PpapiBrokerLoadResult"/>
5423 <affected-histogram name="Plugin.PpapiPluginLoadResult"/>
5424 </fieldtrial>
5425
5400 <fieldtrial name="Prefetch"> 5426 <fieldtrial name="Prefetch">
5401 <group name="ContentPrefetchPrefetchOff" 5427 <group name="ContentPrefetchPrefetchOff"
5402 label="Prefetch is completely disabled."/> 5428 label="Prefetch is completely disabled."/>
5403 <group name="ContentPrefetchPrefetchOn" 5429 <group name="ContentPrefetchPrefetchOn"
5404 label="prefetch is enabled but prerender is disabled."/> 5430 label="prefetch is enabled but prerender is disabled."/>
5405 <affected-histogram name="HttpCache.EntryLockWait"/> 5431 <affected-histogram name="HttpCache.EntryLockWait"/>
5406 <affected-histogram name="Net.HttpTimeToFirstByte"/> 5432 <affected-histogram name="Net.HttpTimeToFirstByte"/>
5407 <affected-histogram name="PLT.Abandoned"/> 5433 <affected-histogram name="PLT.Abandoned"/>
5408 <affected-histogram name="PLT.BeginToFinish"/> 5434 <affected-histogram name="PLT.BeginToFinish"/>
5409 <affected-histogram name="PLT.BeginToFinish_ContentPrefetcher"/> 5435 <affected-histogram name="PLT.BeginToFinish_ContentPrefetcher"/>
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
5550 <fieldtrial name="SSLResumption"> 5576 <fieldtrial name="SSLResumption">
5551 <group name="Resume_Handshake" label="Session Resumption"/> 5577 <group name="Resume_Handshake" label="Session Resumption"/>
5552 <group name="Full_Handshake" label="Full"/> 5578 <group name="Full_Handshake" label="Full"/>
5553 <affected-histogram name="Net.SSL_Connection_Latency"/> 5579 <affected-histogram name="Net.SSL_Connection_Latency"/>
5554 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 5580 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
5555 </fieldtrial> 5581 </fieldtrial>
5556 5582
5557 </fieldtrials> 5583 </fieldtrials>
5558 5584
5559 </histogram-configuration> 5585 </histogram-configuration>
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698