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

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

Issue 15881012: Implement safebrowsing download feedback service, enabled for dev & canary only. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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 | « chrome/common/chrome_switches.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 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
934 </histogram> 934 </histogram>
935 935
936 <histogram name="clickjacking.launch_url"> 936 <histogram name="clickjacking.launch_url">
937 <summary>TBD</summary> 937 <summary>TBD</summary>
938 </histogram> 938 </histogram>
939 939
940 <histogram name="clickjacking.open_download"> 940 <histogram name="clickjacking.open_download">
941 <summary>TBD</summary> 941 <summary>TBD</summary>
942 </histogram> 942 </histogram>
943 943
944 <histogram name="clickjacking.report_and_discard_download" units="ms">
945 <summary>
946 Time between &quot;Report and Discard&quot; button being shown and it being
947 clicked.
948 </summary>
949 </histogram>
950
944 <histogram name="clickjacking.save_download"> 951 <histogram name="clickjacking.save_download">
945 <summary>TBD</summary> 952 <summary>TBD</summary>
946 </histogram> 953 </histogram>
947 954
948 <histogram name="Clipboard.IncognitoUseCase" enum="ClipboardAction"> 955 <histogram name="Clipboard.IncognitoUseCase" enum="ClipboardAction">
949 <obsolete> 956 <obsolete>
950 Deprecated as of 4/2013, experiment confirmed correctness of our patch. 957 Deprecated as of 4/2013, experiment confirmed correctness of our patch.
951 </obsolete> 958 </obsolete>
952 <summary> 959 <summary>
953 Counts how often the user writes or reads from the clipboard and whether the 960 Counts how often the user writes or reads from the clipboard and whether the
(...skipping 9620 matching lines...) Expand 10 before | Expand all | Expand 10 after
10574 kMaxFeatureSize is too small. 10581 kMaxFeatureSize is too small.
10575 </summary> 10582 </summary>
10576 </histogram> 10583 </histogram>
10577 10584
10578 <histogram name="SBClientPhishing.URLFeatureTime" units="milliseconds"> 10585 <histogram name="SBClientPhishing.URLFeatureTime" units="milliseconds">
10579 <summary> 10586 <summary>
10580 The time taken to extract URL features for the phishing classifier. 10587 The time taken to extract URL features for the phishing classifier.
10581 </summary> 10588 </summary>
10582 </histogram> 10589 </histogram>
10583 10590
10591 <histogram name="SBDownloadFeedback.Activations" enum="DownloadItem.DangerType">
10592 <summary>
10593 Count of times download feedback has been started, broken down by danger
10594 type.
10595 </summary>
10596 </histogram>
10597
10598 <histogram name="SBDownloadFeedback.ActiveFeedbacks">
10599 <summary>
10600 When a new download feedback request is added, records the number of
10601 download requests currently active and/or pending.
10602 </summary>
10603 </histogram>
10604
10605 <histogram name="SBDownloadFeedback.Shown" enum="DownloadItem.DangerType">
10606 <summary>
10607 Count of times download feedback button has been shown, broken down by
10608 danger type.
10609 </summary>
10610 </histogram>
10611
10612 <histogram name="SBDownloadFeedback.SizeEligibleKB" units="KB">
10613 <summary>
10614 Size of downloads that were of the correct danger type, regardless if they
10615 meet the max file size check or if they are actually uploaded or not.
10616 </summary>
10617 </histogram>
10618
10619 <histogram name="SBDownloadFeedback.SizeFailure" units="bytes">
Ilya Sherman 2013/06/14 23:26:28 Why are this histogram and the one below in bytes,
10620 <summary>
10621 Size of downloads that failed to be uploaded to the feedback service.
10622 </summary>
10623 </histogram>
10624
10625 <histogram name="SBDownloadFeedback.SizeSuccess" units="bytes">
10626 <summary>
10627 Size of downloads that were successfully uploaded to the feedback service.
10628 </summary>
10629 </histogram>
10630
10631 <histogram name="SBDownloadFeedback.UploadResult"
10632 enum="SBDownloadFeedbackUploadResult">
10633 <summary>
10634 Final result of attempt to upload binary to download feedback service.
10635 </summary>
10636 </histogram>
10637
10584 <histogram name="Search.DefaultSearchProvider" enum="OmniboxSearchEngine"> 10638 <histogram name="Search.DefaultSearchProvider" enum="OmniboxSearchEngine">
10585 <summary> 10639 <summary>
10586 The id of the default search engine that is loaded after Chrome startup. See 10640 The id of the default search engine that is loaded after Chrome startup. See
10587 src/chrome/browser/search_engines/prepopulate_engines.json for more info. 10641 src/chrome/browser/search_engines/prepopulate_engines.json for more info.
10588 </summary> 10642 </summary>
10589 </histogram> 10643 </histogram>
10590 10644
10591 <histogram name="SimpleCache.CheckCRCResult" enum="CheckCRCResult"> 10645 <histogram name="SimpleCache.CheckCRCResult" enum="CheckCRCResult">
10592 <summary> 10646 <summary>
10593 Whether or not the CRC was checked at the moment when the last reference to 10647 Whether or not the CRC was checked at the moment when the last reference to
(...skipping 6622 matching lines...) Expand 10 before | Expand all | Expand 10 after
17216 17270
17217 <enum name="SBClientPhishingScorerCreationStatus" type="int"> 17271 <enum name="SBClientPhishingScorerCreationStatus" type="int">
17218 <int value="0" label="SUCCESS"/> 17272 <int value="0" label="SUCCESS"/>
17219 <int value="1" label="MODEL_OPEN_FAIL"/> 17273 <int value="1" label="MODEL_OPEN_FAIL"/>
17220 <int value="2" label="MODEL_FILE_EMPTY"/> 17274 <int value="2" label="MODEL_FILE_EMPTY"/>
17221 <int value="3" label="MODEL_FILE_TOO_LARGE"/> 17275 <int value="3" label="MODEL_FILE_TOO_LARGE"/>
17222 <int value="4" label="MODEL_PARSE_ERROR"/> 17276 <int value="4" label="MODEL_PARSE_ERROR"/>
17223 <int value="5" label="MODEL_MISSING_FIELDS"/> 17277 <int value="5" label="MODEL_MISSING_FIELDS"/>
17224 </enum> 17278 </enum>
17225 17279
17280 <enum name="SBDownloadFeedbackUploadResult" type="int">
17281 <int value="0" label="SUCCESS"/>
17282 <int value="1" label="UPLOAD_SUCCESS"/>
17283 <int value="2" label="UPLOAD_CANCELLED"/>
17284 <int value="3" label="UPLOAD_METADATA_NET_ERROR"/>
17285 <int value="4" label="UPLOAD_METADATA_RESPONSE_ERROR"/>
17286 <int value="5" label="UPLOAD_FILE_NET_ERROR"/>
17287 <int value="6" label="UPLOAD_FILE_RESPONSE_ERROR"/>
17288 <int value="7" label="UPLOAD_COMPLETE_RESPONSE_ERROR"/>
17289 </enum>
17290
17226 <enum name="ShillTerminationActionResult" type="int"> 17291 <enum name="ShillTerminationActionResult" type="int">
17227 <summary> 17292 <summary>
17228 The termination action result types come from TerminationActionResult in 17293 The termination action result types come from TerminationActionResult in
17229 shill/metrics.h 17294 shill/metrics.h
17230 </summary> 17295 </summary>
17231 <int value="0" label="Success"/> 17296 <int value="0" label="Success"/>
17232 <int value="1" label="Failure"/> 17297 <int value="1" label="Failure"/>
17233 </enum> 17298 </enum>
17234 17299
17235 <enum name="SideloadUIEvents" type="int"> 17300 <enum name="SideloadUIEvents" type="int">
(...skipping 2277 matching lines...) Expand 10 before | Expand all | Expand 10 after
19513 <group name="Disabled" label="Neither extra webstore link is visible"/> 19578 <group name="Disabled" label="Neither extra webstore link is visible"/>
19514 <group name="FooterLink" label="Link in bottom right of footer"/> 19579 <group name="FooterLink" label="Link in bottom right of footer"/>
19515 <group name="PlusIcon" label="Plus icon in apps page"/> 19580 <group name="PlusIcon" label="Plus icon in apps page"/>
19516 <affected-histogram name="Extensions.AppLaunch"/> 19581 <affected-histogram name="Extensions.AppLaunch"/>
19517 <affected-histogram name="NewTabPage.DefaultPageType"/> 19582 <affected-histogram name="NewTabPage.DefaultPageType"/>
19518 </fieldtrial> 19583 </fieldtrial>
19519 19584
19520 </fieldtrials> 19585 </fieldtrials>
19521 19586
19522 </histogram-configuration> 19587 </histogram-configuration>
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698