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

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

Issue 2672603003: Avoid loading an empty token when decrypt failed (Closed)
Patch Set: Fix compile Created 3 years, 10 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
OLDNEW
1 <!-- 1 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved. 2 Copyright 2014 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 a comprehensive list of Chrome user actions along with the owner 8 This file is a comprehensive list of Chrome user actions along with the owner
9 and description for each user action. 9 and description for each user action.
10 10
(...skipping 14808 matching lines...) Expand 10 before | Expand all | Expand 10 after
14819 </action> 14819 </action>
14820 14820
14821 <action name="Signin_Signin_WithDefaultSyncSettings"> 14821 <action name="Signin_Signin_WithDefaultSyncSettings">
14822 <owner>gogerald@chromium.org</owner> 14822 <owner>gogerald@chromium.org</owner>
14823 <description> 14823 <description>
14824 Recorded when the user chooses default sync settings in the sign in succeed 14824 Recorded when the user chooses default sync settings in the sign in succeed
14825 confirmation dialog. 14825 confirmation dialog.
14826 </description> 14826 </description>
14827 </action> 14827 </action>
14828 14828
14829 <action name="Signin_TokenTable_BadEntry">
14830 <owner>msarda@google.com</owner>
14831 <description>
14832 Recorded when a token db entry is not valid (the service field is empty or
14833 the token field is a non-string blob).
14834 </description>
14835 </action>
14836
14837 <action name="Signin_TokenTable_DecryptFailed">
14838 <owner>msarda@google.com</owner>
14839 <description>Recorded when a token data fails to be decrypted.</description>
14840 </action>
14841
14842 <action name="Signin_TokenTable_GetAllTokensInvalidSql">
14843 <owner>msarda@google.com</owner>
14844 <description>
14845 Recorded when the SQL statement to read all tokens from the DB is invalid.
14846 </description>
14847 </action>
14848
14849 <action name="Signin_TokenTable_LoadTokenSuccess">
14850 <owner>msarda@google.com</owner>
14851 <description>
14852 Recorder when a token is successfully loaded (read from the token table and
14853 decrypted).
14854 </description>
14855 </action>
14856
14829 <action name="Signin_Undo_Signin"> 14857 <action name="Signin_Undo_Signin">
14830 <owner>gogerald@chromium.org</owner> 14858 <owner>gogerald@chromium.org</owner>
14831 <description> 14859 <description>
14832 Recorded when the user chooses to undo (abort) the sign in process. It 14860 Recorded when the user chooses to undo (abort) the sign in process. It
14833 closes sign in page without signing user in. 14861 closes sign in page without signing user in.
14834 </description> 14862 </description>
14835 </action> 14863 </action>
14836 14864
14837 <action name="SiteChipPress"> 14865 <action name="SiteChipPress">
14838 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 14866 <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
(...skipping 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after
16366 <action name="webapps.AddShortcut.Manifest"> 16394 <action name="webapps.AddShortcut.Manifest">
16367 <owner>mlamouri@chromium.org</owner> 16395 <owner>mlamouri@chromium.org</owner>
16368 <description> 16396 <description>
16369 Shortcut added to the homescreen with a valid Manifest. This action will be 16397 Shortcut added to the homescreen with a valid Manifest. This action will be
16370 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions 16398 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions
16371 to keep a trend of whether the webapp also add meta tags. 16399 to keep a trend of whether the webapp also add meta tags.
16372 </description> 16400 </description>
16373 </action> 16401 </action>
16374 16402
16375 </actions> 16403 </actions>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698