This repository has been archived by the owner on Apr 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Record histograms for on-demand update check results.
And stop mis-using user metrics action. BUG=424689 Review URL: https://codereview.chromium.org/659333003 Cr-Commit-Position: refs/heads/master@{#300217}
- Loading branch information
Showing
5 changed files
with
81 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9638,6 +9638,16 @@ Therefore, the affected-histogram name has to have at least one dot in it. | |
</summary> | ||
</histogram> | ||
|
||
<histogram name="GoogleUpdate.ErrorHresult"> | ||
<owner>[email protected]</owner> | ||
<summary>The HRESULT for a failed on-demand update check.</summary> | ||
</histogram> | ||
|
||
<histogram name="GoogleUpdate.UpdateErrorCode" enum="GoogleUpdateErrorCode"> | ||
<owner>[email protected]</owner> | ||
<summary>The error code for a failed on-demand update check.</summary> | ||
</histogram> | ||
|
||
<histogram name="GoogleUpdate.UpdatePolicyIsOverridden" enum="Boolean"> | ||
<owner>Please list the metric's owners. Add more owner tags as needed.</owner> | ||
<summary> | ||
|
@@ -9647,6 +9657,11 @@ Therefore, the affected-histogram name has to have at least one dot in it. | |
</summary> | ||
</histogram> | ||
|
||
<histogram name="GoogleUpdate.UpgradeResult" enum="GoogleUpdateUpgradeResult"> | ||
<owner>[email protected]</owner> | ||
<summary>The result of an on-demand update check.</summary> | ||
</histogram> | ||
|
||
<histogram name="GPU.AcceleratedSurfaceRefreshRate" units="hz"> | ||
<owner>[email protected]</owner> | ||
<summary> | ||
|
@@ -44623,6 +44638,28 @@ Therefore, the affected-histogram name has to have at least one dot in it. | |
<int value="13" label="WEB_LOGIN_REQUIRED"/> | ||
</enum> | ||
|
||
<enum name="GoogleUpdateErrorCode" type="int"> | ||
<int value="0" label="GOOGLE_UPDATE_NO_ERROR"/> | ||
<int value="1" label="CANNOT_UPGRADE_CHROME_IN_THIS_DIRECTORY"/> | ||
<int value="2" label="GOOGLE_UPDATE_JOB_SERVER_CREATION_FAILED"/> | ||
<int value="3" label="GOOGLE_UPDATE_ONDEMAND_CLASS_NOT_FOUND"/> | ||
<int value="4" label="GOOGLE_UPDATE_ONDEMAND_CLASS_REPORTED_ERROR"/> | ||
<int value="5" label="GOOGLE_UPDATE_GET_RESULT_CALL_FAILED"/> | ||
<int value="6" label="GOOGLE_UPDATE_GET_VERSION_INFO_FAILED"/> | ||
<int value="7" label="GOOGLE_UPDATE_ERROR_UPDATING"/> | ||
<int value="8" label="GOOGLE_UPDATE_DISABLED_BY_POLICY"/> | ||
<int value="9" label="GOOGLE_UPDATE_DISABLED_BY_POLICY_AUTO_ONLY"/> | ||
</enum> | ||
|
||
<enum name="GoogleUpdateUpgradeResult" type="int"> | ||
<int value="0" label="UPGRADE_STARTED"/> | ||
<int value="1" label="UPGRADE_CHECK_STARTED"/> | ||
<int value="2" label="UPGRADE_IS_AVAILABLE"/> | ||
<int value="3" label="UPGRADE_SUCCESSFUL"/> | ||
<int value="4" label="UPGRADE_ALREADY_UP_TO_DATE"/> | ||
<int value="5" label="UPGRADE_ERROR"/> | ||
</enum> | ||
|
||
<enum name="HIDContinueScenarioType" type="int"> | ||
<summary>Possible detected devices combination on leaving dialog</summary> | ||
<int value="0" label="Pointing device only detected."/> | ||
|