Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 5881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 5892 </histogram> | 5892 </histogram> |
| 5893 | 5893 |
| 5894 <histogram name="Sqlite.Thumbnail.Error" enum="SqliteErrorCode"> | 5894 <histogram name="Sqlite.Thumbnail.Error" enum="SqliteErrorCode"> |
| 5895 <summary>Error codes returned by sqlite for the thumbnail db.</summary> | 5895 <summary>Error codes returned by sqlite for the thumbnail db.</summary> |
| 5896 </histogram> | 5896 </histogram> |
| 5897 | 5897 |
| 5898 <histogram name="Sqlite.Web.Error" enum="SqliteErrorCode"> | 5898 <histogram name="Sqlite.Web.Error" enum="SqliteErrorCode"> |
| 5899 <summary>Error codes returned by sqlite the web db.</summary> | 5899 <summary>Error codes returned by sqlite the web db.</summary> |
| 5900 </histogram> | 5900 </histogram> |
| 5901 | 5901 |
| 5902 <histogram name="Tab.RestoreResult" enum="TabRestoreResult"> | |
|
Ilya Sherman
2013/05/01 01:16:05
nit: Perhaps re-use the "BooleanSuccess" enum?
Philippe
2013/05/02 08:08:47
Good point.
| |
| 5903 <summary> | |
| 5904 When the browser restores a tab, whether the load was successful. Loads can | |
| 5905 fail for instance when there is no connectivity. | |
| 5906 </summary> | |
| 5907 </histogram> | |
| 5908 | |
| 5909 <histogram name="Tab.RestoreTime" unit="ms"> | |
|
Ilya Sherman
2013/05/01 01:16:05
This should be "units". I'm surprised this wasn't
Philippe
2013/05/02 08:08:47
Good catch! The hook was run but the error wasn't
| |
| 5910 <summary>Load times for successful tab restores.</summary> | |
|
Ilya Sherman
2013/05/01 01:16:05
Is this per-tab, or for a whole window, when resto
Philippe
2013/05/02 08:08:47
I'm using singular now which should be less confus
| |
| 5911 </histogram> | |
| 5912 | |
| 5913 <histogram name="Tab.RestoreUserPersistence" enum="TabRestoreUserAction"> | |
| 5914 <summary> | |
| 5915 When the browser restores a tab, whether the user waits for completion of | |
| 5916 the load or if the user gives up by switching to another tab or leaving | |
| 5917 Chrome. | |
| 5918 </summary> | |
| 5919 </histogram> | |
| 5920 | |
| 5902 <histogram name="Tab.SwitchedToForegroundAge" units="ms"> | 5921 <histogram name="Tab.SwitchedToForegroundAge" units="ms"> |
| 5903 <summary>Age (in ms) when the tab was switched to foreground.</summary> | 5922 <summary>Age (in ms) when the tab was switched to foreground.</summary> |
| 5904 </histogram> | 5923 </histogram> |
| 5905 | 5924 |
| 5906 <histogram name="Tab.SwitchedToForegroundLaunchedWithURL" | 5925 <histogram name="Tab.SwitchedToForegroundLaunchedWithURL" |
| 5907 enum="TabSwitchedToForegroundLaunchedWithURL"> | 5926 enum="TabSwitchedToForegroundLaunchedWithURL"> |
| 5908 <summary> | 5927 <summary> |
| 5909 Each time a tab is brought to the foreground, this histogram indicates if | 5928 Each time a tab is brought to the foreground, this histogram indicates if |
| 5910 chrome was launched without an URL (i.e., from the launcher), or with an URL | 5929 chrome was launched without an URL (i.e., from the launcher), or with an URL |
| 5911 (i.e., from another app). | 5930 (i.e., from another app). |
| (...skipping 3535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 9447 </int> | 9466 </int> |
| 9448 <int value="26" label="SQLITE_NOTADB"> | 9467 <int value="26" label="SQLITE_NOTADB"> |
| 9449 File opened that is not a database file | 9468 File opened that is not a database file |
| 9450 </int> | 9469 </int> |
| 9451 <int value="100" label="SQLITE_ROW">sqlite3_step() has another row ready</int> | 9470 <int value="100" label="SQLITE_ROW">sqlite3_step() has another row ready</int> |
| 9452 <int value="101" label="SQLITE_DONE"> | 9471 <int value="101" label="SQLITE_DONE"> |
| 9453 sqlite3_step() has finished executing | 9472 sqlite3_step() has finished executing |
| 9454 </int> | 9473 </int> |
| 9455 </enum> | 9474 </enum> |
| 9456 | 9475 |
| 9476 <enum name="TabRestoreResult" type="int"> | |
| 9477 <int value="0" label="Failed"/> | |
| 9478 <int value="1" label="Succeeded"/> | |
| 9479 </enum> | |
| 9480 | |
| 9481 <enum name="TabRestoreUserAction" type="int"> | |
| 9482 <int value="0" label="WaitForCompletion"/> | |
|
Ilya Sherman
2013/05/01 01:16:05
nit: "Wait for completion"
Philippe
2013/05/02 08:08:47
Done.
| |
| 9483 <int value="1" label="SwitchToAnotherTab"/> | |
|
Ilya Sherman
2013/05/01 01:16:05
nit: "Switch to another tab"
Philippe
2013/05/02 08:08:47
Done.
| |
| 9484 <int value="2" label="LeaveChrome"/> | |
|
Ilya Sherman
2013/05/01 01:16:05
nit: "Leave Chrome"
Philippe
2013/05/02 08:08:47
Done.
| |
| 9485 </enum> | |
| 9486 | |
| 9457 <enum name="TabSwitchedToForegroundLaunchedWithURL" type="int"> | 9487 <enum name="TabSwitchedToForegroundLaunchedWithURL" type="int"> |
| 9458 <int value="0" label="Launched without an URL"/> | 9488 <int value="0" label="Launched without an URL"/> |
| 9459 <int value="1" label="Launched with an URL"/> | 9489 <int value="1" label="Launched with an URL"/> |
| 9460 </enum> | 9490 </enum> |
| 9461 | 9491 |
| 9462 <enum name="TabSwitchedToForegroundRevisit" type="int"> | 9492 <enum name="TabSwitchedToForegroundRevisit" type="int"> |
| 9463 <int value="0" label="First time"/> | 9493 <int value="0" label="First time"/> |
| 9464 <int value="1" label="Revisit"/> | 9494 <int value="1" label="Revisit"/> |
| 9465 </enum> | 9495 </enum> |
| 9466 | 9496 |
| (...skipping 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 10785 <fieldtrial name="SSLResumption"> | 10815 <fieldtrial name="SSLResumption"> |
| 10786 <group name="Resume_Handshake" label="Session Resumption"/> | 10816 <group name="Resume_Handshake" label="Session Resumption"/> |
| 10787 <group name="Full_Handshake" label="Full"/> | 10817 <group name="Full_Handshake" label="Full"/> |
| 10788 <affected-histogram name="Net.SSL_Connection_Latency"/> | 10818 <affected-histogram name="Net.SSL_Connection_Latency"/> |
| 10789 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> | 10819 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> |
| 10790 </fieldtrial> | 10820 </fieldtrial> |
| 10791 | 10821 |
| 10792 </fieldtrials> | 10822 </fieldtrials> |
| 10793 | 10823 |
| 10794 </histogram-configuration> | 10824 </histogram-configuration> |
| OLD | NEW |