diff options
author | yiyaoliu@chromium.org <yiyaoliu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-06 16:00:26 +0000 |
---|---|---|
committer | yiyaoliu@chromium.org <yiyaoliu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-06 16:00:26 +0000 |
commit | 29a529e759eb79681600c7aa51006f8848145f6e (patch) | |
tree | f1d0dcad6d75289699d62942736815fc46a4fead | |
parent | bf0c0d522f7b39e4fce43077e4c39cdbc1432492 (diff) | |
download | chromium_src-29a529e759eb79681600c7aa51006f8848145f6e.zip chromium_src-29a529e759eb79681600c7aa51006f8848145f6e.tar.gz chromium_src-29a529e759eb79681600c7aa51006f8848145f6e.tar.bz2 |
Change the user action file format from .txt to .xml.
In this way, more information can be added (currently added 'description' and 'owner' for each action)
A few functions are moved from tools/metrics/histograms to tools/metrics/common to be shared by tools/metrics and tools/histograms.
BUG=340735
NOTRY=true
Review URL: https://codereview.chromium.org/149503005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255357 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | PRESUBMIT.py | 24 | ||||
-rw-r--r-- | tools/metrics/actions/OWNERS | 2 | ||||
-rw-r--r-- | tools/metrics/actions/PRESUBMIT.py | 33 | ||||
-rw-r--r-- | tools/metrics/actions/actions.xml | 9694 | ||||
-rw-r--r-- | tools/metrics/actions/chromeactions.txt | 1931 | ||||
-rwxr-xr-x | tools/metrics/actions/extract_actions.py | 257 | ||||
-rwxr-xr-x | tools/metrics/actions/extract_actions_test.py | 199 | ||||
-rwxr-xr-x | tools/metrics/actions/print_style.py | 41 | ||||
-rw-r--r-- | tools/metrics/common/diff_util.py (renamed from tools/metrics/histograms/diffutil.py) | 2 | ||||
-rw-r--r-- | tools/metrics/common/pretty_print_xml.py | 193 | ||||
-rwxr-xr-x | tools/metrics/histograms/pretty_print.py | 213 | ||||
-rwxr-xr-x | tools/metrics/histograms/print_style.py | 53 | ||||
-rw-r--r-- | tools/metrics/histograms/update_extension_functions.py | 9 | ||||
-rw-r--r-- | tools/metrics/histograms/update_policies.py | 15 |
14 files changed, 10474 insertions, 2192 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 1e6526f..c7b9fde 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -1014,28 +1014,32 @@ def _CheckCygwinShell(input_api, output_api): def _CheckUserActionUpdate(input_api, output_api): """Checks if any new user action has been added.""" - if any('chromeactions.txt' == input_api.os_path.basename(f) for f in + if any('actions.xml' == input_api.os_path.basename(f) for f in input_api.LocalPaths()): - # If chromeactions.txt is already included in the changelist, the PRESUBMIT - # for chromeactions.txt will do a more complete presubmit check. + # If actions.xml is already included in the changelist, the PRESUBMIT + # for actions.xml will do a more complete presubmit check. return [] - with open('tools/metrics/actions/chromeactions.txt') as f: - current_actions = f.read() - file_filter = lambda f: f.LocalPath().endswith(('.cc', '.mm')) action_re = r'[^a-zA-Z]UserMetricsAction\("([^"]*)' + current_actions = None for f in input_api.AffectedFiles(file_filter=file_filter): for line_num, line in f.ChangedContents(): match = input_api.re.search(action_re, line) if match: + # Loads contents in tools/metrics/actions/actions.xml to memory. It's + # loaded only once. + if not current_actions: + with open('tools/metrics/actions/actions.xml') as actions_f: + current_actions = actions_f.read() + # Search for the matched user action name in |current_actions|. for action_name in match.groups(): - name_pattern = r'\t%s\n' % action_name - if name_pattern not in current_actions: + action = 'name="{0}"'.format(action_name) + if action not in current_actions: return [output_api.PresubmitPromptWarning( 'File %s line %d: %s is missing in ' - 'tools/metrics/actions/chromeactions.txt. Please run ' - 'tools/metrics/actions/extract_actions.py --hash to update.' + 'tools/metrics/actions/actions.xml. Please run ' + 'tools/metrics/actions/extract_actions.py to update.' % (f.LocalPath(), line_num, action_name))] return [] diff --git a/tools/metrics/actions/OWNERS b/tools/metrics/actions/OWNERS deleted file mode 100644 index e57c0895..0000000 --- a/tools/metrics/actions/OWNERS +++ /dev/null @@ -1,2 +0,0 @@ -# per-file rules: -per-file chromeactions.txt=* diff --git a/tools/metrics/actions/PRESUBMIT.py b/tools/metrics/actions/PRESUBMIT.py new file mode 100644 index 0000000..0133163 --- /dev/null +++ b/tools/metrics/actions/PRESUBMIT.py @@ -0,0 +1,33 @@ +# Copyright 2014 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Presubmit script for actions.xml. + +See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts +for more details on the presubmit API built into gcl. +""" + + +def CheckChange(input_api, output_api): + """Checks that actions.xml is up to date and pretty-printed.""" + for f in input_api.AffectedTextFiles(): + p = f.AbsoluteLocalPath() + if (input_api.basename(p) == 'actions.xml' + and input_api.os_path.dirname(p) == input_api.PresubmitLocalPath()): + cwd = input_api.os_path.dirname(p) + exit_code = input_api.subprocess.call( + ['python', 'extract_actions.py', '--presubmit'], cwd=cwd) + if exit_code != 0: + return [output_api.PresubmitError( + 'actions.xml is not up to date or is not formatted correctly; ' + 'run extract_actions.py to fix')] + return [] + + +def CheckChangeOnUpload(input_api, output_api): + return CheckChange(input_api, output_api) + + +def CheckChangeOnCommit(input_api, output_api): + return CheckChange(input_api, output_api) diff --git a/tools/metrics/actions/actions.xml b/tools/metrics/actions/actions.xml new file mode 100644 index 0000000..9e4ab79 --- /dev/null +++ b/tools/metrics/actions/actions.xml @@ -0,0 +1,9694 @@ +<!-- +Copyright 2014 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +--> + +<!-- +This file is a comprehensive list of Chrome user actions along with the owner +and description for each user action. + +Please run extract_actions.py to add new actions and pretty-print this file. + +If a user action is not being used any more, put an <obsolete> tag under +the <action> tag with necessary explanation. Don't delete things in this file. + +TODO(yiyaoliu): +Currently, only file-level comments are supported. By running +extract_actions.py, comments at other places will be deleted. Ideally, comments +should be able to be added at any place in this file. +--> + +<actions> + +<action name="AboutChrome"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutConflicts"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_StartupTick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_background-webapps"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_click-to-play"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_cloud-print"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_cloud-print-proxy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_confirm-to-quit"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_conflicting-modules-check"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_disable-chrome-to-mobile"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_disable-outdated-plugins"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_disable-pnacl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_disable-print-preview"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_disable-views-rect-based-targeting"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_disable-website-settings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_dns-server"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_downloads-new-ui"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_enable-chrome-to-mobile"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_enable-nacl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_enable-nacl-debug"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_enable-nacl-exception-handling"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_enable-pnacl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_enable-smooth-scrolling"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_enable-website-settings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_experimental-location-features"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_expose-for-tabs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_extension-apis"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_focus-existing-tab-on-open"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_gpu-canvas-2d"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_indexeddb-use-leveldb"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_instant-autocomplete-immediately"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_instant-type"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_match-preview"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_my-special-feature"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_nacl-debug-mask"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_nacl-gdb"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_nacl-gdb-script"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_page-prerender"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_prerender-from-omnibox"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_print-preview"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_remoting"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_save-page-as-mhtml"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_snap-start"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_tabbed-options"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_verbatim-instant"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_vertical-tabs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_views-use-rect-based-targeting"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AboutFlags_xss-auditor"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Accessible_Focus_Next"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Accessible_Focus_Previous"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Add_Remove_Display"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Advanced_Print"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Back_Backspace"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Back_F1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Back_Left"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_BrightnessDown_F6"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_BrightnessUp_F7"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Disable_Caps_Lock"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Exit_First_Q"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Exit_Second_Q"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_FocusLocation_D"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_FocusLocation_L"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_FocusSearch_E"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_FocusSearch_K"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Focus_Bookmarks"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Focus_Launcher"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Focus_Location"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Focus_Next_Pane"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Focus_Previous_Pane"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Focus_Search"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Focus_Toolbar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Forward_Backspace"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Forward_F2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Forward_Right"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Fullscreen_F4"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_KeyboardBrightnessDown_F6"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_KeyboardBrightnessUp_F7"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Launch_App"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Launch_Last_App"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_LockScreen_L"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_LockScreen_LockButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_LockScreen_PowerButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Maximize_Restore_F4"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_NewTab_T"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_New_Incognito_Window"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_New_Window"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_NextWindow_F5"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_NextWindow_Tab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Next_Ime"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Open_Crosh"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Open_Feedback_Page"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Open_File_Manager"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Overview_F5"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_PrevWindow_F5"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_PrevWindow_Tab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Previous_Ime"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Reload_F3"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Reload_R"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Restore_Tab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Rotate_Window"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Scale_Ui_Down"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Scale_Ui_Reset"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Scale_Ui_Up"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Search_LWin"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_SelectNextTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_SelectPreviousTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Show_App_Menu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Show_Keyboard_Overlay"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Show_Message_Center_Bubble"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Show_System_Tray_Bubble"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Show_Task_Manager"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_ShutDown_PowerButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Silence_Spoken_Feedback"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Swap_Primary_Display"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Switch_Ime"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Switch_To_Next_User"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Switch_To_Previous_User"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Take_Partial_Screenshot"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Take_Screenshot"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Toggle_Caps_Lock"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Toggle_Maximized"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Toggle_Minimized"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Toggle_Minimized_M"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Toggle_Minimized_Minus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Toggle_Mirror_Mode"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Toggle_Spoken_Feedback"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Touch_Hud_Clear"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_VolumeDown_F9"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_VolumeMute_F8"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_VolumeUp_F10"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Window_Position_Center"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Window_Snap_Left"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Accel_Window_Snap_Right"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AcceptedGeneratedKeyword"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AcceptedKeyword"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AcceptedKeywordHint"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ActionBox.ClickButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ActionBox.FindShareHandlers"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ActiveBrowserChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ActiveTabChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AppCloseButton_Clk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AppList_AutoLaunchCanceled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AppList_AutoLaunched"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AppList_ClickOnApp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AppList_ClickOnAppFromSearch"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AppList_HotwordRecognized"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AppList_Search"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AppList_SearchedBySpeech"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AppList_VoiceSearchCanceled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AppList_VoiceSearchStartedManually"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AutoDetectChange"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AutomaticReset_WebUIBanner_BannerShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AutomaticReset_WebUIBanner_ManuallyClosed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AutomaticReset_WebUIBanner_ResetClicked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AutomaticSettingsReset_WebUIBanner_BannerShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AutomaticSettingsReset_WebUIBanner_LearnMoreClicked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="AutomaticSettingsReset_WebUIBanner_ManuallyClosed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Back"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackColor"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick10"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick11"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick12"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick13"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick14"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick15"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick16"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick17"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick18"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick19"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick3"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick4"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick5"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick6"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick7"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick8"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ChapterClick9"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick10"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick11"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick12"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick13"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick14"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick15"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick16"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick17"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick18"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick19"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick3"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick4"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick5"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick6"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick7"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick8"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_HistoryClick9"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_Popup"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackMenu_ShowFullHistory"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BackgroundImageCache"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_ACDH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_AOF"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_BMF"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_BPE"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_BPGM"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_BRPH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_DBMF"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_DSMF"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_DSMF_1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_DSMF_2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_EFD"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_FAMF"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_IDBMF"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_MIDI"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_NC"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_NC17"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RDH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RFH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RVD"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RVD2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RVD3"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RVH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RWH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RWH1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RWH2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RWH3"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RWH4"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RWH5"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RWH6"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RWHVA1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_RWHVA2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_SharedMemoryManager1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_SharedMemoryManager2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_UnexpectedFrameType"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BadMessageTerminate_WPH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BindingsMismatchTerminate_RVH_WebUI"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BindingsMismatch_GetProcessHostPerSite"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockNonsandboxedPlugins_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockNonsandboxedPlugins_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockedPluginInfobar.AllowThisTime"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockedPluginInfobar.AlwaysAllow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockedPluginInfobar.Closed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockedPluginInfobar.Dismissed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockedPluginInfobar.LearnMore"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockedPluginInfobar.Shown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockedPluginInfobar.Shown.Java"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockedPluginInfobar.Shown.QuickTime"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockedPluginInfobar.Shown.RealPlayer"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockedPluginInfobar.Shown.Shockwave"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BlockedPluginInfobar.Shown.WindowsMediaPlayer"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Bold"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkAdded"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBarFolder_CtxMenu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBarFolder_DragEnd"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBarFolder_DragStart"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_Add"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_Edit"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_NewFolder"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_Open"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_OpenAll"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_OpenAllInNewWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_OpenAllIncognito"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_OpenInNewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_OpenInNewWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_Redo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_Remove"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_RemoveFromBookmarkBar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_ShowInFolder"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ContextMenu_Undo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_CtxMenu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_DragButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_DragEnd"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_DragFromFolder"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_DragRecentlyBookmarked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_DragStart"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ShowOtherBookmarks"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBar_ShowRecentlyBookmarked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBubble_ChangeParent"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBubble_ChangeTitleInBubble"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBubble_Edit"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBubble_EditFromCombobox"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBubble_Options"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBubble_RemoveFromBookmarkBar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBubble_ShowOnBookmarkBar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkBubble_Unstar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_AddPage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_Copy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_Cut"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_Delete"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_Edit"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_Export"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_Import"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_NewFolder"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_OpenInNewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_OpenInNewWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_OpenInSame"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_OpenIncognito"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_Paste"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_ShowInFolder"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_Sort"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_UndoDelete"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_UndoGlobal"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Command_UndoNone"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Export"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Import"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_NavigateTo_BookmarkBar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_NavigateTo_Mobile"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_NavigateTo_Other"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_NavigateTo_Recent"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_NavigateTo_Search"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_NavigateTo_SubFolder"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Sort"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkManager_Sync"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BookmarkMenu_clicked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Bookmarks_Search"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.AbnormalDeath"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.Attached"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.Crashed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.Create"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.DidNavigate"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.EnableAutoResize"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.Hung"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.Killed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.Navigate"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.PermissionRequest"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.PermissionRequest.Download"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.PermissionRequest.Geolocation"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.PermissionRequest.JSDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.PermissionRequest.Media"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.PermissionRequest.NewWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.PermissionRequest.PointerLock"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.Responsive"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.StartDrag"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.Guest.Terminate"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionAllow.Download"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionAllow.Geolocation"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionAllow.JSDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionAllow.Media"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionAllow.NewWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionAllow.PointerLock"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionDeny.Download"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionDeny.Geolocation"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionDeny.JSDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionDeny.Media"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionDeny.NewWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="BrowserPlugin.PermissionDeny.PointerLock"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CanCommitURL_BlockedAndKilled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Cancel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Caption_ClickTogglesMaximize"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Caption_GestureTogglesMaximize"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Cast_Sender_CastDeviceSelected"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Cast_Sender_CastEnterFullscreen"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Cast_Sender_CastMediaType"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Cast_Sender_CastPlayRequested"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Cast_Sender_YouTubeDeviceSelected"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearAuthenticationCache"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_Autofill"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_Cache"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_ContentLicenses"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_Cookies"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_Downloads"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_Everything"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_History"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_LSOData"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_LastDay"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_LastHour"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_LastMonth"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_LastWeek"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_MaskContainsExtension"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_MaskContainsProtectedWeb"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_MaskContainsUnprotectedWeb"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_Passwords"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_ServerBoundCerts"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_ShaderCache"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearBrowsingData_ShowDlg"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearSelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearSiteDataOnExitDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClearSiteDataOnExitEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClickDisableGpuAcceleration"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClickToPlay_AllowAlways"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClickToPlay_Dismiss_Infobar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClickToPlay_InfobarShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClickToPlay_LoadAll_Bubble"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClickToPlay_LoadAll_Infobar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClickedBookmarkBarAppsShortcutButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClickedBookmarkBarFolder"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ClickedBookmarkBarURLButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CloseAllSuppressedPopups"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CloseButton_Clk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CloseFromContextMenu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CloseTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CloseTabByKey"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CloseTab_Accelerator"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CloseTab_Mouse"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CloseWebApp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CloseWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CloseWindowByKey"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConfirmNotToOrderSpringCharger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConfirmOrderSpringCharger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConfirmOrderSpringChargerByPhone"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConfirmOrderSpringChargerOnline"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConfirmSafeSpringCharger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConfirmStillUseOriginalChargerAfterOrder"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConflictBadge"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConflictingModuleNotificationDismissed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConflictingModuleNotificationShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConnectivityDiagnostics.LaunchSource.OfflineChromeOS"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConnectivityDiagnostics.LaunchSource.WebStore"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConnectivityDiagnostics.UA.LogsShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConnectivityDiagnostics.UA.PassingTestsShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConnectivityDiagnostics.UA.SettingsShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConnectivityDiagnostics.UA.TestResultExpanded"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ConnectivityDiagnostics.UA.TestSuiteRun"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CookieBlockingDisabledPerDefault"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CookieBlockingEnabledPerDefault"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Copy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CopyToFindPboard"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CopyURLToClipBoard"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CreateHostedApp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CreateLink"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CreateProfile"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CreateShortcut"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CriticalNotificationShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CriticalNotification_AutoRestart"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CriticalNotification_Ignore"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="CriticalNotification_Restart"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Cryptohome.PKCS11InitFail"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Cut"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DataReductionProxy_PromoDisplayed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DataReductionProxy_PromoLearnMore"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DataReductionProxy_TurnedOff"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DataReductionProxy_TurnedOn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DataReductionProxy_TurnedOnFromPromo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Debugger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Delete"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DeleteBackward"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DeleteForward"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DeleteSelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DeleteToEndOfParagraph"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DeleteWordBackward"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DeleteWordForward"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Destination_Application_Edit"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Destination_Application_Launch"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Destination_Application_Uninstall"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Destination_Bookmarks"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Destination_Bookmarks_OpenURL"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Destination_Downloads"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Destination_History"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Destination_History_OpenURL"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Destination_MostVisited"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Destination_MostVisited_OpenURL"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Destination_Sessions"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevTools_InspectAndroidPage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevTools_InspectAndroidWebView"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevTools_InspectElement"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevTools_InspectRenderer"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevTools_InspectWorker"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevTools_ToggleConsole"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevTools_ToggleWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevicesPage_AddPrintersClicked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevicesPage_LogInStartedFromDeviceListPromo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevicesPage_LogInStartedFromRegisterPromo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevicesPage_ManageClicked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevicesPage_Opened"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevicesPage_RegisterCancel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevicesPage_RegisterClicked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevicesPage_RegisterFailure"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DevicesPage_RegisterSuccess"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DisabledExtensionNotificationDismissed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DisabledExtensionNotificationShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DockingWindow_Bottom"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DockingWindow_BottomHalf"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DockingWindow_Left"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DockingWindow_LeftHalf"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DockingWindow_Maximize"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DockingWindow_Right"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DockingWindow_RightHalf"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="DockingWindow_Top"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Duplicate"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="EditApplicationSettings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="EditKeywords"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="EditSearchEngines"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="EmailPageLocation"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="EnterFullScreenWithWrenchMenu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Exit"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ExtensionNotFound_ED"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ExtensionWipeoutNotificationShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Extensions.ExtensionInstalled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Extensions.ExtensionUninstalled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Extensions.IDChangedError"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Extensions.WebStoreLaunch"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Feedback"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FileBrowser.CreateNewFolder"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FileBrowser.PhotoEditor.Edit"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FileBrowser.PhotoEditor.View"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FileBrowser.SuggestApps.ShowDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FilterURLTermiate_About"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FilterURLTermiate_Blocked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FilterURLTermiate_Invalid"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Find"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FindNext"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FindPrevious"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FindString"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FirstRunDef_Accept"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FocusAppMenu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FocusBookmarksToolbar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FocusChromeOSStatus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FocusInfobars"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FocusLocation"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FocusNextPane"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FocusPageAndAppMenus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FocusPreviousPane"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FocusSearch"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FocusToolbar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FontName"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FontSize"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FontSizeDelta"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForeColor"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="FormatBlock"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Forward"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardDelete"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick10"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick11"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick12"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick13"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick14"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick15"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick16"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick17"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick18"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick19"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick3"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick4"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick5"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick6"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick7"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick8"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ChapterClick9"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick10"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick11"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick12"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick13"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick14"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick15"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick16"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick17"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick18"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick19"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick3"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick4"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick5"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick6"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick7"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick8"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_HistoryClick9"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_Popup"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ForwardMenu_ShowFullHistory"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Gesture_Overview"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Go"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="GoogleNow.ButtonClicked0"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="GoogleNow.ButtonClicked1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="GoogleNow.Dismissed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="GoogleNow.MessageClicked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="GoogleNow.WelcomeToastClickedNo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="GoogleNow.WelcomeToastClickedYes"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="GoogleNow.WelcomeToastDismissed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="GpuAccelerationDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="GpuAccelerationEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HiliteColor"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_BookmarkStarClicked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_CancelRemoveSelected"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_ConfirmRemoveSelected"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_EntryLinkClick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_EntryLinkRightClick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_EntryMenuRemoveFromHistory"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_EntryMenuShowMoreFromSite"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_InitClearBrowsingData"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_NewerHistoryClick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_NewestHistoryClick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_OlderHistoryClick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_RemoveSelected"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_Search"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_SearchResultClick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="HistoryPage_SearchResultRemove"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="History_DeleteHistory"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="History_DragIcon"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="History_DragThumbnail"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="History_Search"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Home"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ImportLockDialogCocoa_Shown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ImportLockDialogGtk_Shown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ImportLockDialogView_Shown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Import_ShowDlg"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Indent"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_chewing"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_english-m"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_hangul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:am:sera"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:ar:kbd"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:bn:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:fa:isiri"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:gu:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:hi:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:kn:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:ml:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:mr:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:ta:inscript"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:ta:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:ta:phonetic"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:ta:tamil99"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:ta:typewriter"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:te:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:th:kesmanee"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:th:pattachote"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:th:tis820"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:vi:tcvn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:vi:telex"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:vi:viqr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:vi:vni"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:zh:cangjie"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_m17n:zh:quick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_mozc"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_mozc-chewing"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_mozc-dv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_mozc-hangul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_mozc-jp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_pinyin"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_pinyin-dv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:am:phonetic:arm"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:be::fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:be::ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:be::nld"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:bg::bul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:bg:phonetic:bul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:br::por"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:by::bel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:ca::fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:ca:eng:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:ca:multix:fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:ch::ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:ch:fr:fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:cz::cze"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:cz:qwerty:cze"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:de::ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:de:neo:ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:dk::dan"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:ee::est"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:es::spa"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:es:cat:cat"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:fi::fin"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:fr::fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:gb:dvorak:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:gb:extd:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:ge::geo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:gr::gre"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:hr::scr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:hu::hun"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:il::heb"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:is::ice"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:it::ita"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:jp::jpn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:kr:kr104:kor"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:latam::spa"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:lt::lit"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:lv::lav"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:lv:apostrophe:lav"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:mn::mon"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:nl::nld"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:no::nob"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:no::nor"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:pl::pol"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:pt::por"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:ro::rum"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:rs::srp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:ru::rus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:ru:phonetic:rus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:se::swe"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:si::slv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:sk::slo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:tr::tur"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:ua::ukr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:us::eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:us:altgr-intl:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:us:colemak:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:us:dvorak:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InputMethodOptions_Open_xkb:us:intl:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertBacktab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertHTML"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertHorizontalRule"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertImage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertLineBreak"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertNewline"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertNewlineInQuotedContent"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertOrderedList"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertParagraph"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertText"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InsertUnorderedList"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InspectDevices"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InstallSite"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InstantExtended.MostVisitedClicked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InstantExtended.ShowNTP"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="InstantExtended.ShowSRP"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Italic"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="JustifyCenter"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="JustifyLeft"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="JustifyRight"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="KeySystemSupport.Widevine.Queried"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="KeySystemSupport.Widevine.Supported"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="KeySystemSupport.WidevineWithType.Queried"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="KeySystemSupport.WidevineWithType.Supported"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="KeywordEditor_AddKeyword"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="KeywordEditor_AddKeywordJS"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="KeywordEditor_ModifiedKeyword"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="KeywordEditor_RemoveKeyword"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageChange_Accept"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageChange_Revert"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageConfigView_Open"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageMenuButton_InputMethodChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageMenuButton_Open"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_chewing"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_english-m"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_hangul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:am:sera"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:ar:kbd"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:bn:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:fa:isiri"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:gu:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:hi:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:kn:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:ml:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:mr:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:ta:inscript"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:ta:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:ta:phonetic"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:ta:tamil99"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:ta:typewriter"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:te:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:th:kesmanee"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:th:pattachote"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:th:tis820"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:vi:tcvn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:vi:telex"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:vi:viqr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:vi:vni"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:zh:cangjie"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_m17n:zh:quick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_mozc"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_mozc-chewing"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_mozc-dv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_mozc-hangul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_mozc-jp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_pinyin"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_pinyin-dv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:am:phonetic:arm"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:be::fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:be::ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:be::nld"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:bg::bul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:bg:phonetic:bul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:br::por"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:by::bel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:ca::fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:ca:eng:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:ca:multix:fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:ch::ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:ch:fr:fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:cz::cze"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:cz:qwerty:cze"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:de::ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:de:neo:ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:dk::dan"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:ee::est"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:es::spa"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:es:cat:cat"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:fi::fin"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:fr::fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:gb:dvorak:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:gb:extd:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:ge::geo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:gr::gre"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:hr::scr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:hu::hun"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:il::heb"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:is::ice"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:it::ita"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:jp::jpn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:kr:kr104:kor"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:latam::spa"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:lt::lit"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:lv::lav"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:lv:apostrophe:lav"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:mn::mon"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:nl::nld"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:no::nob"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:no::nor"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:pl::pol"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:pt::por"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:ro::rum"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:rs::srp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:ru::rus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:ru:phonetic:rus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:se::swe"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:si::slv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:sk::slo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:tr::tur"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:ua::ukr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:us::eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:us:altgr-intl:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:us:colemak:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:us:dvorak:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_DisableInputMethod_xkb:us:intl:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_chewing"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_english-m"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_hangul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:am:sera"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:ar:kbd"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:bn:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:fa:isiri"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:gu:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:hi:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:kn:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:ml:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:mr:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:ta:inscript"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:ta:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:ta:phonetic"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:ta:tamil99"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:ta:typewriter"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:te:itrans"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:th:kesmanee"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:th:pattachote"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:th:tis820"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:vi:tcvn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:vi:telex"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:vi:viqr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:vi:vni"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:zh:cangjie"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_m17n:zh:quick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_mozc"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_mozc-chewing"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_mozc-dv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_mozc-hangul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_mozc-jp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_pinyin"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_pinyin-dv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:am:phonetic:arm"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:be::fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:be::ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:be::nld"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:bg::bul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:bg:phonetic:bul"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:br::por"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:by::bel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:ca::fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:ca:eng:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:ca:multix:fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:ch::ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:ch:fr:fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:cz::cze"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:cz:qwerty:cze"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:de::ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:de:neo:ger"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:dk::dan"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:ee::est"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:es::spa"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:es:cat:cat"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:fi::fin"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:fr::fra"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:gb:dvorak:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:gb:extd:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:ge::geo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:gr::gre"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:hr::scr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:hu::hun"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:il::heb"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:is::ice"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:it::ita"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:jp::jpn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:kr:kr104:kor"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:latam::spa"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:lt::lit"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:lv::lav"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:lv:apostrophe:lav"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:mn::mon"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:nl::nld"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:no::nob"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:no::nor"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:pl::pol"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:pt::por"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:ro::rum"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:rs::srp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:ru::rus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:ru:phonetic:rus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:se::swe"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:si::slv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:sk::slo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:tr::tur"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:ua::ukr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:us::eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:us:altgr-intl:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:us:colemak:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:us:dvorak:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_EnableInputMethod_xkb:us:intl:eng"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_Open"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_Restart"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SignOut"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_af"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_am"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_az"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_be"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_bg"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_bh"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_bn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_br"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_bs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ca"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_co"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_cs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_cy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_da"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_de"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_de-AT"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_de-CH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_de-DE"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_el"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_en"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_en-AU"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_en-CA"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_en-GB"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_en-NZ"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_en-US"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_en-ZA"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_eo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_es"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_es-419"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_et"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_eu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_fa"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_fi"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_fil"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_fo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_fr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_fr-CA"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_fr-CH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_fr-FR"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_fy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ga"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_gd"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_gl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_gn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_gu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ha"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_haw"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_he"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_hi"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_hr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_hu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_hy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ia"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_id"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_is"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_it"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_it-CH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_it-IT"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ja"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_jw"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ka"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_kk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_km"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_kn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ko"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ku"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ky"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_la"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ln"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_lo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_lt"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_lv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_mk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ml"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_mn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_mo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_mr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ms"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_mt"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_nb"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ne"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_nl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_nn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_no"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_oc"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_om"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_or"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_pa"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_pl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ps"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_pt"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_pt-BR"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_pt-PT"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_qu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_rm"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ro"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ru"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_sd"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_sh"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_si"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_sk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_sl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_sn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_so"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_sq"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_sr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_st"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_su"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_sv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_sw"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ta"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_te"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_tg"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_th"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ti"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_tk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_to"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_tr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_tt"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_tw"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ug"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_uk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_ur"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_uz"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_vi"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_xh"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_yi"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_yo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_zh"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_zh-CN"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_zh-TW"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_SpellCheckLanguageChange_zu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_af"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_am"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_az"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_be"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_bg"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_bh"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_bn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_br"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_bs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ca"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_co"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_cs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_cy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_da"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_de"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_de-AT"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_de-CH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_de-DE"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_el"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_en"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_en-AU"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_en-CA"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_en-GB"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_en-NZ"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_en-US"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_en-ZA"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_eo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_es"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_es-419"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_et"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_eu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_fa"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_fi"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_fil"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_fo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_fr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_fr-CA"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_fr-CH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_fr-FR"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_fy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ga"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_gd"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_gl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_gn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_gu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ha"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_haw"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_he"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_hi"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_hr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_hu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_hy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ia"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_id"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_is"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_it"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_it-CH"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_it-IT"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ja"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_jw"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ka"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_kk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_km"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_kn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ko"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ku"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ky"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_la"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ln"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_lo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_lt"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_lv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_mk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ml"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_mn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_mo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_mr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ms"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_mt"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_nb"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ne"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_nl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_nn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_no"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_oc"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_om"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_or"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_pa"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_pl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ps"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_pt"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_pt-BR"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_pt-PT"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_qu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_rm"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ro"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ru"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_sd"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_sh"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_si"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_sk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_sl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_sn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_so"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_sq"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_sr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_st"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_su"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_sv"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_sw"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ta"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_te"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_tg"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_th"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ti"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_tk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_to"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_tr"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_tt"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_tw"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ug"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_uk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_ur"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_uz"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_vi"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_xh"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_yi"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_yo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_zh"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_zh-CN"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_zh-TW"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LanguageOptions_UiLanguageChange_zu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Launcher_ClickOnApp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Launcher_ClickOnApplistButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LoadURL"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LoadURLFromKeyword"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LocalDiscoveryNotificationsDisabled_Settings_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LocalDiscoveryNotificationsDisabled_Settings_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="LockScreen"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Login.CreateAccount"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Login_DemoUserLoginSuccess"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Login_Failure"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Login_GuestLoginSuccess"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Login_OffTheRecordLoginSuccess"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Login_Success"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedMode_ClosePassphraseDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedMode_LocallyManagedUserCreated"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedMode_MainFrameNavigation"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedMode_NewManagedUserWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedMode_OpenPassphraseDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedMode_OpenSettings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedMode_StartupEnableManagedSwitch"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedMode_StartupManagedSwitch"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedMode_StartupNoManagedSwitch"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedUsers_Chromeos_Sync_Invalidated"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedUsers_Chromeos_Sync_Recovered"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedUsers_UploadItem_Queued"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ManagedUsers_UploadItem_Syncing"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MaxButton_Clk_ExitFS"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MaxButton_Clk_Maximize"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MaxButton_Clk_Restore"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MaxButton_MaxLeft"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MaxButton_MaxRight"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MaxButton_Maximize"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MaxButton_Minimize"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MaxButton_Restore"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MaxButton_ShowBubble"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MediaContextMenu_Controls"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MediaContextMenu_Loop"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MediaContextMenu_Mute"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MediaContextMenu_Pause"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MediaContextMenu_Play"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MediaContextMenu_Unmute"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Menu_Take_Screenshot"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MinButton_Clk"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Minimize_UsingKey"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MixedScript_LoadAnyway_Bubble"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileActionBarShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileBeamCallbackSuccess"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileBeamInvalidAppState"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileBreakpadUploadAttempt"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileBreakpadUploadFailure"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileBreakpadUploadSuccess"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuCopyImageLinkAddress"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuCopyLinkAddress"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuCopyLinkText"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuDownloadImage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuDownloadLink"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuDownloadVideo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuImage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuLink"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuOpenImageInNewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuOpenLink"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuOpenLinkInIncognito"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuOpenLinkInNewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuSaveImage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuSearchByImage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuShareLink"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuText"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuVideo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileContextMenuViewImage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileFirstEditInOmnibox"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileFocusedFakeboxOnNtp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileFocusedOmniboxNotOnNtp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileFocusedOmniboxOnNtp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileFreAttemptSignIn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileFreSignInSuccessful"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileFreSkipSignIn"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMWSession"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuAddToBookmarks"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuAllBookmarks"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuBack"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuCloseAllTabs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuCloseTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuFeedback"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuFindInPage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuForward"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuFullscreen"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuNewIncognitoTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuNewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuOpenTabs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuQuit"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuReload"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuSettings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuShare"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileMenuShow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileNTPBookmark"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileNTPForeignSession"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileNTPMostVisited"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileNTPRecentlyClosed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileNTPSwitchToBookmarks"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileNTPSwitchToIncognito"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileNTPSwitchToMostVisited"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileNTPSwitchToOpenTabs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileNewTabOpened"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileOmniboxRefineSuggestion"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileOmniboxSearch"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileOmniboxVoiceSearch"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobilePageLoaded"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobilePageLoadedDesktopUserAgent"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobilePageLoadedWithKeyboard"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileReceivedExternalIntent"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileRendererCrashed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileShortcutAllBookmarks"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileShortcutFindInPage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileShortcutNewIncognitoTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileShortcutNewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileSideSwipeFinished"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileStackViewCloseTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileStackViewSwipeCloseTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileTabClobbered"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileTabClosed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileTabStripCloseTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileTabStripNewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileTabSwitched"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileToolbarBack"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileToolbarForward"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileToolbarNewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileToolbarReload"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileToolbarShowMenu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileToolbarShowStackView"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileToolbarStackViewNewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileToolbarToggleBookmark"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileUsingMenuByHwButtonDragging"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileUsingMenuByHwButtonTap"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileUsingMenuBySwButtonDragging"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MobileUsingMenuBySwButtonTap"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited0"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited3"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited4"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited5"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited6"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited7"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited8"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited9"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisitedReordered"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited_BlacklistCleared"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited_Clicked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited_UrlBlacklisted"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited_UrlPinned"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited_UrlRemoved"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MostVisited_UrlUnpinned"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Mouse_Down"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveBackward"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveBackwardAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveDown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveDownAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveForward"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveForwardAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveLeft"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveLeftAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MovePageDown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MovePageDownAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MovePageUp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MovePageUpAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveRight"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveRightAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveTabNext"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveTabPrevious"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveToBeginningOfDocument"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveToBeginningOfLine"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveToBeginningOfLineAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveToBeginningOfParagraph"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveToBeginningOfParagraphAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveToEndOfDocument"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveToEndOfLine"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveToEndOfLineAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveToEndOfParagraph"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveToEndOfParagraphAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveUp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveUpAndModifySelection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveWordBackward"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveWordForward"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveWordLeft"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="MoveWordRight"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="NTPPromoClosed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="NTPPromoShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="NativeUI_Applications"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="NavEntryCommitted"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="NavEntryCommitted.SRP"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Net.URLRequest_StartJob_InvalidReferrer"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="NewIncognitoWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="NewProfileWindowByIndex"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="NewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="NewTabPage_ReopenTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="NewTab_Button"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="NewWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Notifications.Mute"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Notifications.ShowMessageCenter"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Notifications.ShowSettings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Notifications.Unmute"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Omnibox.ServerSuggestDelete.Failure"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Omnibox.ServerSuggestDelete.Success"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OmniboxDestinationURLIsSearchOnDSP"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OmniboxDestinationURLMatchesDefaultSearchProvider"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OmniboxInputInProgress"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Omnibox_DragString"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Omnibox_DragURL"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenAddBluetoothDeviceDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenAllBookmarks"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenAllBookmarksIncognitoWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenAllBookmarksNewWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenChangeProfilePictureDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenFile"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenFileManager"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenFileSystemPersistent"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenFileSystemTemporary"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenInternetOptionsDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenLanguageOptionsDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenSystemOptionsDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OpenTabpose"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_AppLanguage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_AskForSaveLocation_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_AskForSaveLocation_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_AutoSpellCorrection_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_AutoSpellCorrection_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_AutofillAuxiliaryProfiles_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_AutofillAuxiliaryProfiles_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Autologin_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Autologin_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_BackgroundMode_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_BackgroundMode_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_BlockAllPopups_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_BlockAllPopups_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ChangeDefaultZoomLevel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ChangeFixedFont"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ChangeFontEncoding"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ChangeProxies"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ChangeSansSerifFont"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ChangeSerifFont"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ChangeStandardFont"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_CheckCertRevocation_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_CheckCertRevocation_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ClearData"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_CloudPrintDevicesPage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ContentSettings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_CustomFrame_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_CustomFrame_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultCookieSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultGeolocationSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultHandlersSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultImagesSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultJavaScriptSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultMIDISysExSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultMediaStreamMicSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultMediaStreamSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultMouseLockSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultMultipleAutomaticDLSettingChange"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultNotificationsSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultPluginsSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DefaultPopupsSettingChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DictionaryLanguage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DisableCloudPrintProxy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DisableGData_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DisableGData_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DnsPrefetchCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DnsPrefetchCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DoNotTrackCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_DoNotTrackCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_EnableCloudPrintProxy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_FormAutofill_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_FormAutofill_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_GearsSettings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_GoogleGeolocationAccessCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_GoogleGeolocationAccessCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_GtkThemeSet"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Homepage_HideHomeButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Homepage_HomeButton_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Homepage_HomeButton_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Homepage_IsNewTabPage_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Homepage_IsNewTabPage_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Homepage_ShowHomeButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Homepage_UseNewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Homepage_UseURL"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_HotwordCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_HotwordCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ImagesCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ImagesCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_InstantEnabled_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_InstantEnabled_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_InstantExtendedEnabled_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_InstantExtendedEnabled_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Internet_DataRoaming_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Internet_DataRoaming_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_JavaCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_JavaCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_LinkDoctorCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_LinkDoctorCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ManageCloudPrinters"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ManageSSLCertificates"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ManageSearchEngines"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ManagerCerts"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_MetricsReportingCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_MetricsReportingCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_MousePrimaryRight_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_MousePrimaryRight_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_PasswordGenerationCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_PasswordGenerationCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_PasswordManager_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_PasswordManager_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_PluginsCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_PluginsCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ResetAutoOpenFiles"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ResetToDefaults"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SSL2_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SSL2_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SSL3_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SSL3_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SafeBrowsingCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SafeBrowsingCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SafeBrowsingDownloadFeedbackCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SafeBrowsingDownloadFeedbackCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SearchEngineChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SensitivitySlider_Changed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SetAsDefaultBrowser"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SetDownloadDirectory"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ShowAutoFillSettings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ShowBookmarksBar_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ShowBookmarksBar_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ShowCookies"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ShowPasswordManager"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ShowPasswordsExceptions"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ShowProxySettings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SpeedFactorSlider_Changed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SpellCheck_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_SpellCheck_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Startup_Custom"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Startup_Homepage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Startup_LastSession"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Startup_NewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_TLS1_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_TLS1_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_TabsToLinks_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_TabsToLinks_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_TapToClickCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_TapToClickCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ThemesGallery"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_ThemesReset"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_TouchpadNaturalScroll_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_TouchpadNaturalScroll_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_TouchpadTapToClick_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_TouchpadTapToClick_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Translate_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_Translate_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_UseSpellingServiceCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_UseSpellingServiceCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_UseSuggestCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_UseSuggestCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_VertEdgeScrollCheckbox_Disable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Options_VertEdgeScrollCheckbox_Enable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OriginChipPress"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.AllowThisTime"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.Closed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.Dismissed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.LearnMore"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.Shown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.Shown.Java"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.Shown.QuickTime"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.Shown.Reader"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.Shown.RealPlayer"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.Shown.Shockwave"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.Shown.Silverlight"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedPluginInfobar.Update"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedUpgradeBubble.Later"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedUpgradeBubble.Reinstall"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OutdatedUpgradeBubble.Show"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Outdent"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="OverrideEncoding"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.FitToHeightButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.FitToPageButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.FitToWidthButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.LoadFailure"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.LoadSuccess"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.PreviewDocumentLoadFailure"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.PrintButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.PrintPage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.SaveButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.SavePage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.ZoomFromBrowser"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.ZoomInButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF.ZoomOutButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_EnableReaderInfoBarCancel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_EnableReaderInfoBarOK"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_EnableReaderInfoBarShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_InstallReaderInfoBarCancel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_InstallReaderInfoBarOK"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_InstallReaderInfoBarShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_ReaderInterstitialCancel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_ReaderInterstitialIgnore"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_ReaderInterstitialShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_ReaderInterstitialUpdate"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_3D"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_Attachment"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_Bookmarks"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_Digital_Signature"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_Movie"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_Portfolios"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_Portfolios_Packages"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_Rights_Management"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_Screen"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_Shared_Form"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_Shared_Review"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_Sound"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_Unsupported_XFA"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_UseReaderInfoBarCancel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_UseReaderInfoBarOK"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PDF_UseReaderInfoBarShown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PPAPI.BrokerInfobarClickedAllow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PPAPI.BrokerInfobarClickedDeny"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PPAPI.BrokerInfobarDisplayed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PPAPI.BrokerSettingAllow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PPAPI.BrokerSettingDeny"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PageDown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PageLoad"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PageLoadSRP"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PageUp"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Panel_Minimize_Caption_Click"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Panel_Minimize_Caption_Gesture"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PasswordManager_Disabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PasswordManager_Enabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PasswordManager_RemovePasswordException"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PasswordManager_RemoveSavedPassword"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Paste"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PasteAndMatchStyle"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PeopleSearch_OpenChat"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PeopleSearch_SendEmail"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PlatformVerificationAccepted"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PlatformVerificationRejected"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PluginContextMenu_RotateClockwise"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PluginContextMenu_RotateCounterclockwise"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PluginLoaderPosix.LaunchUtilityProcess"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PluginLoaderPosix.UtilityProcessCrashed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Plugin_200ForByteRange"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Plugin_Blocked"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Plugin_BlockedByPolicy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Plugin_ClickToPlay"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Plugin_Hide_Click"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Plugin_Hide_Menu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Plugin_Load_Click"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Plugin_Load_Menu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Plugin_Load_UI"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Plugin_NPAPINotSupported"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PrintNow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PrintPreview"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PrintView_PrintDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PrintView_PrintNow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PrintView_ZoomMinus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PrintView_ZoomPageFull"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PrintView_ZoomPageWidth"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="PrintView_ZoomPlus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ProcessSwapBindingsMismatch_RVHM"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Redo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="RegisterProtocolHandler.ContextMenu_Open"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="RegisterProtocolHandler.ContextMenu_Settings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="RegisterProtocolHandler.InfoBar_Deny"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="RegisterProtocolHandler.InfoBar_LearnMore"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="RegisterProtocolHandler.InfoBar_Shown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="RegisterProtocolHandler.Infobar_Accept"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Reload"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ReloadIgnoringCache"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="RemoveFormat"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ReportBug"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ResetProfile"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="RestoreTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareDontProceed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareDontProceed_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareDontProceed_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareForcedDontProceed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareForcedDontProceed_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareForcedDontProceed_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareProceed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareProceed_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareProceed_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareShow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareShow_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMalwareShow_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleDontProceed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleDontProceed_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleDontProceed_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleForcedDontProceed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleForcedDontProceed_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleForcedDontProceed_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleProceed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleProceed_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleProceed_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleShow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleShow_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialMultipleShow_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingDontProceed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingDontProceed_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingDontProceed_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingForcedDontProceed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingForcedDontProceed_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingForcedDontProceed_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingProceed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingProceed_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingProceed_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingShow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingShow_V1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SBInterstitialPhishingShow_V2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SSL.DisplayedInsecureContent"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SSL.RanInsecureContent"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SSL.RanInsecureContentGoogle"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Save"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SavePage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ScreenLocker_OnLoginFailure"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ScreenLocker_Show"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ScreenLocker_Signout"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ScreenLocker_StartScreenSaver"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Screenshot_CopyClipboard"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Screenshot_TakeFull"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Screenshot_TakePartial"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SearchWithRLZ"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SearchWithoutRLZ"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectAll"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectLastTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectLine"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectNextTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectNumberedTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectPrevTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectProfile"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectTab0"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectTab1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectTab2"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectTab3"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectTab4"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectTab5"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectTab6"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SelectTab7"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SettingsResetBubble.LearnMore"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SettingsResetBubble.NoThanks"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SettingsResetBubble.Reset"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SettingsResetBubble.Show"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Shelf_AlignmentSetBottom"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Shelf_AlignmentSetLeft"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Shelf_AlignmentSetRight"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowAccessibilitySettings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowAppLauncherPage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowAppMenu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowApplications"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowAsTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowBluetoothSettingsPage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowBookmarkManager"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowBookmarks"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowBookmarksBar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowChargerReplacementDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowControlPanel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowDateOptions"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowDisplayOptions"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowDownloads"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowExtensions"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowFileBrowserFullTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowHelpTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowHelpTabViaF1"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowHelpTabViaWrenchMenu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowHistory"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowJSConsole"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowModalDialog"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowOptions"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowPageMenu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowRecentlyViewed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowSections_RecentSitesDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowSections_RecentSitesEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ShowSessions"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Shutdown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SiteChipPress"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Star"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StartupTick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Accessability_DetailedView"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Audio_CurrentInputDevice"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Audio_CurrentOutputDevice"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Audio_Detailed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Audio_SwitchInputDevice"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Audio_SwitchOutputDevice"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_AutoClickDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_AutoClickEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Bluetooth_Connect_Known"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Bluetooth_Connect_Unknown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Bluetooth_Detailed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Bluetooth_Disabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Bluetooth_Enabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_BrightnessChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Brightness_Detailed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_CapsLock_Detailed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_CapsLock_DisabledByClick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_CapsLock_EnabledByClick"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_CapsLock_Popup"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Drive_CancelOperation"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Drive_Detailed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Drive_Settings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_HighContrastDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_HighContrastEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_IME_Detailed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_IME_SwitchMode"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_LargeCursorDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_LargeCursorEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_MagnifierDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_MagnifierEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_MenuOpened"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Network_ConnectConfigured"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Network_ConnectToConfigured"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Network_ConnectUnconfigured"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Network_ConnectionDetails"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Network_Detailed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Network_JoinOther"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Network_Settings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Network_WifiDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Network_WifiEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_SignOut"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_SpokenFeedbackDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_SpokenFeedbackEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_VPN_ConnectToNetwork"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_VPN_ConnectionDetails"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_VPN_Detailed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_VPN_JoinOther"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_VPN_Settings"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_VirtualKeyboardDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_VirtualKeyboardEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Volume_ChangedMenu"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="StatusArea_Volume_ChangedPopup"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Stop"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Strikethrough"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SuspiciousExtensionBubbleDismissed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SyncedNotifications.SendingServiceDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SyncedNotifications.SendingServiceEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SystemBack"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="SystemBackForNavigation"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_BookmarkAllTabs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_CloseOtherTabs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_CloseTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_CloseTabsOpenedBy"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_CloseTabsToRight"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_CompactNavigationBar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_Duplicate"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_NewTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_OpenTabsLeftToRight"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_OpenTabsRightToLeft"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_Reload"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_RestoreTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_TogglePinned"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_UseDestinationsTab_Off"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_UseDestinationsTab_On"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabContextMenu_UseVerticalTabs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabOverview_DetachCell"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabOverview_DragCell"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabOverview_DragOverMiniWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabOverview_DropOnMiniWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabOverview_ExitMouse"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabOverview_Keystroke"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TabOverview_PressedCreateNewBrowserButton"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Tab_DropURLBetweenTabs"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Tab_DropURLOnTab"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TaskManager"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Terminate_ProcessMismatch_CreateNewWidget"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Terminate_ProcessMismatch_CreateNewWindow"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Themes.Gone"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Themes.Loaded"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Themes.Migrated"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Themes_Installed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Themes_Reset"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ThirdPartyCookieBlockingDisabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ThirdPartyCookieBlockingEnabled"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ToggleBold"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ToggleCompactNavigationBar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ToggleDevTools"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ToggleDevToolsConsole"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ToggleExtensionShelf"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ToggleFullscreen"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ToggleItalic"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ToggleUnderline"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Toolbar_DragStar"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Touchpad_Gesture_Overview"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TouchscreenScroll"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TouchscreenScrollFling"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Touchscreen_Down"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TrackpadScroll"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="TrackpadScrollFling"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Transpose"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Tray_Help"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Tray_LockScreen"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Tray_ShutDown"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Underline"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Undo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Unlink"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Unselect"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="UpdateChrome"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Updater.ServerCertificateChanged"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Updater.ServerCertificateFailed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="UpgradeCheck_AlreadyUpToDate"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="UpgradeCheck_AlreadyUpgraded"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="UpgradeCheck_Done"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="UpgradeCheck_Error"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="UpgradeCheck_Started"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="UpgradeCheck_TimedOut"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="UpgradeCheck_UpgradeIsAvailable"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="UpgradeCheck_Upgraded"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Upgrade_Started"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ViewAboutConflicts"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ViewAboutFlash"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ViewAboutNaCl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ViewSource"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="VirtualKeyboardLoaded"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WP_EditImage"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WP_Gallery"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.CaptureVisibleRegion"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.ClearData"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.ExecuteScript"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Go"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Guest.ClearData"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Guest.OverrideUA"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Guest.PermissionAllow.PluginLoad"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Guest.PermissionDeny.PluginLoad"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Guest.PluginLoadAllowed"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Guest.PluginLoadDenied"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Guest.PluginLoadRequest"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Guest.Terminate"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Reload"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Stop"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.Terminate"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebView.WebRequest.AddListener"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebsiteSettings_CookiesDialogOpened"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WebsiteSettings_Opened"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Win8DesktopRestart"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="Win8MetroRestart"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WindowBorder_ClickTogglesSingleAxisMaximize"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WindowDrag_MaximizeLeft"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WindowDrag_MaximizeRight"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WindowSelector_Overview"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WindowSelector_Selection"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="WorkerProcess_BadProcessToKill"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ZoomMinus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ZoomMinus_AtMinimum"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ZoomNormal"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ZoomPlus"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="ZoomPlus_AtMaximum"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="justifyFull"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="mceAddControl"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="mceBeginUndoLevel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="mceEndUndoLevel"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="mceInsertContent"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="mceRepaint"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="mceSave"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="mceSetStyleInfo"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="styleWithCSS"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="webapps.AddShortcut.AppShortcut"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="webapps.AddShortcut.AppShortcutApple"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +<action name="webapps.AddShortcut.Bookmark"> + <owner>Please list the metric's owners. Add more owner tags as needed.</owner> + <description>Please enter the description of this user action.</description> +</action> + +</actions> diff --git a/tools/metrics/actions/chromeactions.txt b/tools/metrics/actions/chromeactions.txt deleted file mode 100644 index 1de9216..0000000 --- a/tools/metrics/actions/chromeactions.txt +++ /dev/null @@ -1,1931 +0,0 @@ -0x5d4affbdc9e636fe AboutChrome -0x6c3fb8ca36f60394 AboutConflicts -0xe93a6d5909da6a5a AboutFlags_StartupTick -0xbfdd432b8d9d4ad6 AboutFlags_background-webapps -0x439284a07fb851bb AboutFlags_click-to-play -0x10ffe0a8b323b586 AboutFlags_cloud-print -0x4da52e00bdfac86a AboutFlags_cloud-print-proxy -0xc5ec36aaa32ceff4 AboutFlags_confirm-to-quit -0x4e8fe1c674de45dd AboutFlags_conflicting-modules-check -0x4ebeea0717b98e89 AboutFlags_disable-chrome-to-mobile -0xe9d2339d6b9225c7 AboutFlags_disable-outdated-plugins -0x40c0bddfe31a67c2 AboutFlags_disable-pnacl -0xf73b5212b48e2a75 AboutFlags_disable-print-preview -0x973035dcbd7da57d AboutFlags_disable-views-rect-based-targeting -0x088990bbea59a185 AboutFlags_disable-website-settings -0xdddbf34cee2c636c AboutFlags_dns-server -0x3add7fc42803849e AboutFlags_downloads-new-ui -0x487390cc957aa352 AboutFlags_enable-chrome-to-mobile -0x4eae5ccc2900dffa AboutFlags_enable-nacl -0x91d89fbc43b29963 AboutFlags_enable-nacl-debug -0x6d932203ed5c6ae8 AboutFlags_enable-nacl-exception-handling -0x26ca6c633d183f66 AboutFlags_enable-pnacl -0x1a3d598e2cd416a0 AboutFlags_enable-smooth-scrolling -0x22268494c966e464 AboutFlags_enable-website-settings -0x79571e31c2dc4d3c AboutFlags_experimental-location-features -0x307b8a127f85947e AboutFlags_expose-for-tabs -0x2c97f94b6aca4a22 AboutFlags_extension-apis -0x3a73624e6d06ac2e AboutFlags_focus-existing-tab-on-open -0x66a2e456dfe783d3 AboutFlags_gpu-canvas-2d -0x0a1b6a5d816fde03 AboutFlags_indexeddb-use-leveldb -0x6cb0582a680ffec6 AboutFlags_instant-autocomplete-immediately -0x67b7031bb00a6917 AboutFlags_instant-type -0x681dbf08b11af420 AboutFlags_match-preview -0x0156f26c1be32122 AboutFlags_my-special-feature -0x3327ba9002a2b7b9 AboutFlags_nacl-debug-mask -0x94c46ee32cd0fd19 AboutFlags_nacl-gdb -0xbec26a19fa263850 AboutFlags_nacl-gdb-script -0xb41d9c886871e31a AboutFlags_page-prerender -0x735ca25b198de8ab AboutFlags_prerender-from-omnibox -0xb33861525ba727a4 AboutFlags_print-preview -0x75b933619fb87fec AboutFlags_remoting -0x4ef8419b680e7a19 AboutFlags_save-page-as-mhtml -0xb9396e0515186060 AboutFlags_snap-start -0x4efbca63b3accd5f AboutFlags_tabbed-options -0x2ec81fb90d9bed1e AboutFlags_verbatim-instant -0x6e65ea1edca0f441 AboutFlags_vertical-tabs -0xb5726d311462960f AboutFlags_views-use-rect-based-targeting -0xb0140558fbb7c0bf AboutFlags_xss-auditor -0x56d1715aaf01650e Accel_Accessible_Focus_Next -0xbbf8552fa6bc4ec8 Accel_Accessible_Focus_Previous -0x6897e3c3045c2049 Accel_Add_Remove_Display -0x323b3db9c0dc8a29 Accel_Advanced_Print -0x46299b11fb76c5d3 Accel_Back_Backspace -0x942956b3c704a9a2 Accel_Back_F1 -0x651680cc43f0574d Accel_Back_Left -0x9d53a3047a707543 Accel_BrightnessDown_F6 -0xb05e783429d6cfac Accel_BrightnessUp_F7 -0xbd73010eb2b54e3e Accel_Disable_Caps_Lock -0x2fa7197377421869 Accel_Exit_First_Q -0x75c842188f8d6864 Accel_Exit_Second_Q -0x7f2c75700d286c16 Accel_FocusLocation_D -0xe566241731cecfbb Accel_FocusLocation_L -0xb4f736d60280d914 Accel_FocusSearch_E -0xbe8f2bb497e569c3 Accel_FocusSearch_K -0xd1a08c0ad9020bcb Accel_Focus_Bookmarks -0x49eb338835815c65 Accel_Focus_Launcher -0xf14b8cacdf69810d Accel_Focus_Location -0xf5d5437926066992 Accel_Focus_Next_Pane -0x34c39dd57d09c168 Accel_Focus_Previous_Pane -0x4ee80099ff1e7faf Accel_Focus_Search -0x8d13cf705975a471 Accel_Focus_Toolbar -0x87886216ce3f147d Accel_Forward_Backspace -0x5aa4a40eb4d92d0a Accel_Forward_F2 -0xad7e6131ff6f2528 Accel_Forward_Right -0x36adab865c373745 Accel_Fullscreen_F4 -0x125f05329e660307 Accel_KeyboardBrightnessDown_F6 -0xcdd268156ab80bb1 Accel_KeyboardBrightnessUp_F7 -0xe0211ccf9161bf90 Accel_Launch_App -0x18bced3edb68ea2e Accel_Launch_Last_App -0xb3ca99d79240c92f Accel_LockScreen_L -0x8fadf02749171923 Accel_LockScreen_LockButton -0xaf0a974743d27634 Accel_LockScreen_PowerButton -0x290302f64fd4dfe1 Accel_Maximize_Restore_F4 -0x5e6bce93ecde1df8 Accel_NewTab_T -0xde2191f2bea26a79 Accel_New_Incognito_Window -0x757d4b57a1ec0fc5 Accel_New_Window -0x5a27559e6846a75e Accel_NextWindow_F5 -0xc217e3bb30e9a004 Accel_NextWindow_Tab -0x0dbf80bca1f5aa55 Accel_Next_Ime -0xf7e71746dcb2dcb6 Accel_Open_Crosh -0x568322b9a748838c Accel_Open_Feedback_Page -0x73d6c20888399463 Accel_Open_File_Manager -0x450e0851cdca9dba Accel_Overview_F5 -0x2e92845dc8edee91 Accel_PrevWindow_F5 -0x49b33857117c4c43 Accel_PrevWindow_Tab -0x1287b6b8d53be265 Accel_Previous_Ime -0xa2654c422408df28 Accel_Reload_F3 -0x6db94baf96eb6cfd Accel_Reload_R -0x6c2a5c8adfe66d24 Accel_Restore_Tab -0x7a90b3b33e942604 Accel_Rotate_Window -0x9898c5b87b6b9800 Accel_Scale_Ui_Down -0xb1b4ccdf5b8a40d9 Accel_Scale_Ui_Reset -0x51abf32e73b8d48b Accel_Scale_Ui_Up -0xe315330404ef14a8 Accel_Search_LWin -0x01b760c64064556f Accel_SelectNextTab -0x86e5b771da4dc62f Accel_SelectPreviousTab -0x9792f1f961c20c23 Accel_Show_App_Menu -0xd87cd8d5a98aa3c3 Accel_Show_Keyboard_Overlay -0x0fd23c275cddd272 Accel_Show_Message_Center_Bubble -0x629c5c45c8c5d04d Accel_Show_System_Tray_Bubble -0x718c0cc58e95908d Accel_Show_Task_Manager -0x178d1faf1167b4ca Accel_ShutDown_PowerButton -0x0c31c5b8cba6153c Accel_Silence_Spoken_Feedback -0xd22a9c9640925fae Accel_Swap_Primary_Display -0x66699817f069d43e Accel_Switch_Ime -0x744101dfa25c0f2a Accel_Switch_To_Next_User -0x9186389d613efe32 Accel_Switch_To_Previous_User -0xf6a1706f2c8aaa07 Accel_Take_Partial_Screenshot -0xc9658518e5333399 Accel_Take_Screenshot -0x6e94b035f45335c8 Accel_Toggle_Caps_Lock -0x5430faa376fbc325 Accel_Toggle_Maximized -0x3336c54f07ac2500 Accel_Toggle_Minimized -0x4a523ddfebc25031 Accel_Toggle_Minimized_M -0x943a938771a11aaa Accel_Toggle_Minimized_Minus -0xc90f960d50b63469 Accel_Toggle_Mirror_Mode -0xa1a07dd227e5332e Accel_Toggle_Spoken_Feedback -0x5523297f977df4f6 Accel_Touch_Hud_Clear -0x7974ffb673dd5475 Accel_VolumeDown_F9 -0xbe6aee0aaab8ed8a Accel_VolumeMute_F8 -0x1cbd5b055dc9a3cc Accel_VolumeUp_F10 -0x62ff3afb978ab1bd Accel_Window_Position_Center -0xbf7e1632990c4967 Accel_Window_Snap_Left -0x361de755acf47c9b Accel_Window_Snap_Right -0x649461e26c8e5796 AcceptedGeneratedKeyword -0x2b6ed5e3f78e1295 AcceptedKeyword -0xaa16d48a61361aa6 AcceptedKeywordHint -0x21cdf71f12d41976 ActionBox.ClickButton -0xbd451ad0142aa0c0 ActionBox.FindShareHandlers -0xe86a88a8a34848a8 ActiveBrowserChanged -0xb52f7beb7f11bedf ActiveTabChanged -0x966cdbb949bad0d7 AppCloseButton_Clk -0xf91a69e600aa53b9 AppList_AutoLaunchCanceled -0x3512923b3703e606 AppList_AutoLaunched -0xfc0c75574fa0f498 AppList_ClickOnApp -0x73d7010c18cf1912 AppList_ClickOnAppFromSearch -0xeca78128207e2c2e AppList_HotwordRecognized -0xdd57b39909cb275a AppList_Search -0xb58656b4552c3bf7 AppList_SearchedBySpeech -0xf91dc0e2612ed54b AppList_VoiceSearchCanceled -0x462539c392c047c2 AppList_VoiceSearchStartedManually -0x9ff9ef57d8d1d87c AutoDetectChange -0x2ec21bf8ac5a6992 AutomaticReset_WebUIBanner_BannerShown -0xaa07e015f2ac0368 AutomaticReset_WebUIBanner_ManuallyClosed -0x09adf2b62d945111 AutomaticReset_WebUIBanner_ResetClicked -0x9f8ff521a42ec0cf AutomaticSettingsReset_WebUIBanner_BannerShown -0x7ea2d0e015218b4e AutomaticSettingsReset_WebUIBanner_LearnMoreClicked -0xd017041feaa29d71 AutomaticSettingsReset_WebUIBanner_ManuallyClosed -0x0557fa923dcee4d0 Back -0xc66d44d8107c5f5d BackColor -0xcafd9c09ee856f4d BackMenu_ChapterClick1 -0x0f870d70d3ad63af BackMenu_ChapterClick10 -0xcc7f480485be490f BackMenu_ChapterClick11 -0x66df4c323616cc9c BackMenu_ChapterClick12 -0x6ec9591704e695aa BackMenu_ChapterClick13 -0x58c363a6b68f5ea5 BackMenu_ChapterClick14 -0xce465328fcddd205 BackMenu_ChapterClick15 -0x537f15b23c6f30fd BackMenu_ChapterClick16 -0x59fc3ff15b0285ce BackMenu_ChapterClick17 -0x76eff190094eeebd BackMenu_ChapterClick18 -0x612d4da6cc153fcb BackMenu_ChapterClick19 -0x0a2a978da163a692 BackMenu_ChapterClick2 -0xaae08324262e26af BackMenu_ChapterClick3 -0x92f71dc4c198baa5 BackMenu_ChapterClick4 -0xfbeb6fe82a534622 BackMenu_ChapterClick5 -0x3b6f45a1f7eba171 BackMenu_ChapterClick6 -0x0b70734d408d755b BackMenu_ChapterClick7 -0x119b707f7f07cefe BackMenu_ChapterClick8 -0xb74f7eb6d083cb24 BackMenu_ChapterClick9 -0x8263388629c2ea39 BackMenu_HistoryClick1 -0x3a4283b20c70c670 BackMenu_HistoryClick10 -0xa283fd8a15a4e007 BackMenu_HistoryClick11 -0xd183cc11491b8574 BackMenu_HistoryClick12 -0x01409b3abb9faf3f BackMenu_HistoryClick13 -0x1cf609ef7031b464 BackMenu_HistoryClick14 -0xbbf3b3884419f441 BackMenu_HistoryClick15 -0x525beb7c7bf0b6c2 BackMenu_HistoryClick16 -0x087081f30a41a309 BackMenu_HistoryClick17 -0xe72486ef9669532b BackMenu_HistoryClick18 -0xd551fbd2fbcf39f3 BackMenu_HistoryClick19 -0xb4d488c6dbd86f28 BackMenu_HistoryClick2 -0xf3949ca015f2facd BackMenu_HistoryClick3 -0x314bb467b300d16f BackMenu_HistoryClick4 -0x2a8ce062be9f62c5 BackMenu_HistoryClick5 -0x6fda0344ca038ae7 BackMenu_HistoryClick6 -0x743a926f56fd079a BackMenu_HistoryClick7 -0xca86e954d3d40ec0 BackMenu_HistoryClick8 -0x24dc0dd3b2471a22 BackMenu_HistoryClick9 -0xd31dee084a5166e5 BackMenu_Popup -0x478e9b82a50ffea5 BackMenu_ShowFullHistory -0x048733a8c6205d00 BackgroundImageCache -0x554b7c860c749c2f BadMessageTerminate_ACDH -0x878b28b309d1205e BadMessageTerminate_AOF -0xec6518c4af50b7ac BadMessageTerminate_BMF -0x1f57dc66c6c91837 BadMessageTerminate_BPE -0x0eba05c9a1e2be6a BadMessageTerminate_BPGM -0x5a858938e484c903 BadMessageTerminate_BRPH -0x6f41bf748eb54008 BadMessageTerminate_DBMF -0xd910b7f4e1b53c11 BadMessageTerminate_DSMF -0x3c463d9eb1c92f64 BadMessageTerminate_DSMF_1 -0x8b956c45b0f38be9 BadMessageTerminate_DSMF_2 -0x6ebaa5e3651107fa BadMessageTerminate_EFD -0xff06108fb2aa73fa BadMessageTerminate_FAMF -0xbecb3852be04c506 BadMessageTerminate_IDBMF -0x9e69131e5123433a BadMessageTerminate_MIDI -0xd7e4d61883121c76 BadMessageTerminate_NC -0x448f44d226b839b7 BadMessageTerminate_NC17 -0xd267646495d87640 BadMessageTerminate_RDH -0x90d4be9ff70af550 BadMessageTerminate_RFH -0xce2d3186346ab161 BadMessageTerminate_RVD -0x63a03e0434226c4d BadMessageTerminate_RVD2 -0xb2f819a82aed24cd BadMessageTerminate_RVD3 -0xf845124429e7aa80 BadMessageTerminate_RVH -0xcb59a352ad13dc91 BadMessageTerminate_RWH -0xa47427921bd8233b BadMessageTerminate_RWH1 -0x1b40d08165319763 BadMessageTerminate_RWH2 -0xb4074307cbcb96bd BadMessageTerminate_RWH3 -0xa00e08812a4284c2 BadMessageTerminate_RWH4 -0xefc9deffa33ee67d BadMessageTerminate_RWH5 -0x5041402c6cdf0483 BadMessageTerminate_RWH6 -0x5378a4f2a775cb88 BadMessageTerminate_RWHVA1 -0x3ceaa56d35b39da4 BadMessageTerminate_RWHVA2 -0x2996df71030ce814 BadMessageTerminate_SharedMemoryManager1 -0xf0a271d3e39e7deb BadMessageTerminate_SharedMemoryManager2 -0xb22079c43bc5b72e BadMessageTerminate_UnexpectedFrameType -0xc4874f0e8e8b60aa BadMessageTerminate_WPH -0x56649dd19258ed1f BindingsMismatchTerminate_RVH_WebUI -0x85a700c6e9915ca8 BindingsMismatch_GetProcessHostPerSite -0x1d145f0af708242c BlockNonsandboxedPlugins_Disable -0xd80cc9291c9c82a9 BlockNonsandboxedPlugins_Enable -0xe0daa169d443430e BlockedPluginInfobar.AllowThisTime -0xbc5f7815d41f0a0a BlockedPluginInfobar.AlwaysAllow -0xa6092c47f7cd698b BlockedPluginInfobar.Closed -0xf73bbd9fdcaeb1f9 BlockedPluginInfobar.Dismissed -0x4937bd47014fb3e0 BlockedPluginInfobar.LearnMore -0x127e30ad4cde6b00 BlockedPluginInfobar.Shown -0x4353c1e2880c75be BlockedPluginInfobar.Shown.Java -0x84cc82257207df8d BlockedPluginInfobar.Shown.QuickTime -0x819dbe166b094c47 BlockedPluginInfobar.Shown.RealPlayer -0x65add1afd150b840 BlockedPluginInfobar.Shown.Shockwave -0x0ef80834f3e539cc BlockedPluginInfobar.Shown.WindowsMediaPlayer -0x114c3050111d8b8d Bold -0x084d04c506da33c4 BookmarkAdded -0x02f476e54c6d58bd BookmarkBarFolder_CtxMenu -0x3012b56b98c28823 BookmarkBarFolder_DragEnd -0xe71c0ba72ca2f331 BookmarkBarFolder_DragStart -0x4213d5e4d5da1c0a BookmarkBar_ContextMenu_Add -0x1ce97170a30f2fdd BookmarkBar_ContextMenu_Edit -0xbe267767bb380a0d BookmarkBar_ContextMenu_NewFolder -0x41b46cb5ee579e4a BookmarkBar_ContextMenu_Open -0xc0b2c7f3e0cf1d69 BookmarkBar_ContextMenu_OpenAll -0xb6828d311b612fdd BookmarkBar_ContextMenu_OpenAllInNewWindow -0x95a93ad59fa23f78 BookmarkBar_ContextMenu_OpenAllIncognito -0x798f8467fbe49e1e BookmarkBar_ContextMenu_OpenInNewTab -0x14c4432cb3aca04b BookmarkBar_ContextMenu_OpenInNewWindow -0x933a912dd22eacb3 BookmarkBar_ContextMenu_Redo -0xd8a39c089af645f1 BookmarkBar_ContextMenu_Remove -0xa90364ba80763db0 BookmarkBar_ContextMenu_RemoveFromBookmarkBar -0xa905159308ac6adc BookmarkBar_ContextMenu_ShowInFolder -0xb985dcc55f9d73a4 BookmarkBar_ContextMenu_Undo -0x07801d0423d26682 BookmarkBar_CtxMenu -0x8623e5f54147dbe6 BookmarkBar_DragButton -0x4b37738130b32b3e BookmarkBar_DragEnd -0x6c0fc567d362960e BookmarkBar_DragFromFolder -0xeec5d4ade759d651 BookmarkBar_DragRecentlyBookmarked -0xeffa5b8ce7f96fd9 BookmarkBar_DragStart -0x949073bf8996b6c8 BookmarkBar_ShowOtherBookmarks -0xef415d0bbf795b32 BookmarkBar_ShowRecentlyBookmarked -0xd4d041fb05dcaebf BookmarkBubble_ChangeParent -0x83076d556121e076 BookmarkBubble_ChangeTitleInBubble -0x4cc462516fa2889d BookmarkBubble_Edit -0x58cace8d3ebf1abe BookmarkBubble_EditFromCombobox -0xf7694a5980ded770 BookmarkBubble_Options -0x39ef6892d936d7a7 BookmarkBubble_RemoveFromBookmarkBar -0x75e42372b72c1861 BookmarkBubble_ShowOnBookmarkBar -0x30597ba5e2be6f6d BookmarkBubble_Unstar -0xfd805402bb43ad35 BookmarkManager_Command_AddPage -0xf415e2985a9b8797 BookmarkManager_Command_Copy -0xd652521dd6f6520d BookmarkManager_Command_Cut -0xf63d235dce12af6c BookmarkManager_Command_Delete -0xeb9d14b63c668935 BookmarkManager_Command_Edit -0x6952f508cca0af6c BookmarkManager_Command_Export -0x07b4870fefd41631 BookmarkManager_Command_Import -0x38f61b3a1f189cf1 BookmarkManager_Command_NewFolder -0xfe57bff660e9bfdc BookmarkManager_Command_OpenInNewTab -0xc60afc5e287d7673 BookmarkManager_Command_OpenInNewWindow -0x4708046b0cfa4229 BookmarkManager_Command_OpenInSame -0x1b3262b87b17f67c BookmarkManager_Command_OpenIncognito -0x81230a6e417dcd81 BookmarkManager_Command_Paste -0x35fe4acf56dc3bf4 BookmarkManager_Command_ShowInFolder -0x000b578d014a1fac BookmarkManager_Command_Sort -0x911ace5e57087cf7 BookmarkManager_Command_UndoDelete -0x6596199ad9e751f9 BookmarkManager_Command_UndoGlobal -0x4ac8df00196c66e3 BookmarkManager_Command_UndoNone -0x1671befd86500f4c BookmarkManager_Export -0x2a8f60054baba3eb BookmarkManager_Import -0x6528526502a5491e BookmarkManager_NavigateTo_BookmarkBar -0x1302e50e6a427538 BookmarkManager_NavigateTo_Mobile -0x5103f6e198f61079 BookmarkManager_NavigateTo_Other -0xbbc7d061af736ad3 BookmarkManager_NavigateTo_Recent -0x5b3873d060943bd9 BookmarkManager_NavigateTo_Search -0x2540c3dd2d046919 BookmarkManager_NavigateTo_SubFolder -0xfc2f9e1efe0612ba BookmarkManager_Sort -0xc7c989d7aa14f64d BookmarkManager_Sync -0xec92650848f88dda BookmarkMenu_clicked -0xd1cd299109c75a4c Bookmarks_Search -0xbd8c276496f8eb7a BrowserPlugin.Guest.AbnormalDeath -0x39907654af4d7a8a BrowserPlugin.Guest.Attached -0x371d5e60b00738d9 BrowserPlugin.Guest.Crashed -0x854cc1f139ba9418 BrowserPlugin.Guest.Create -0xa1822ac47db91018 BrowserPlugin.Guest.DidNavigate -0x6a80626069f68d37 BrowserPlugin.Guest.EnableAutoResize -0xde8be5ce26955605 BrowserPlugin.Guest.Hung -0xa369e99aa2e21969 BrowserPlugin.Guest.Killed -0x428cf267aeb35e28 BrowserPlugin.Guest.Navigate -0xdd4859340407e122 BrowserPlugin.Guest.PermissionRequest -0x20ba04d2331f9bfa BrowserPlugin.Guest.PermissionRequest.Download -0x8d7c904ec99c12fd BrowserPlugin.Guest.PermissionRequest.Geolocation -0x5f74e8609b46daa5 BrowserPlugin.Guest.PermissionRequest.JSDialog -0xf9453f6f98d12f02 BrowserPlugin.Guest.PermissionRequest.Media -0x2b75a893f779e6df BrowserPlugin.Guest.PermissionRequest.NewWindow -0x2ff464e34165d946 BrowserPlugin.Guest.PermissionRequest.PointerLock -0x69b219de7f17c077 BrowserPlugin.Guest.Responsive -0x08702304ca6ced55 BrowserPlugin.Guest.StartDrag -0x7784cf1f8b1cc3f0 BrowserPlugin.Guest.Terminate -0xd09d482ae9adff4b BrowserPlugin.PermissionAllow.Download -0x3a3bb14eac6426bb BrowserPlugin.PermissionAllow.Geolocation -0x442d4c824f5b759b BrowserPlugin.PermissionAllow.JSDialog -0xdc67748c325b2bef BrowserPlugin.PermissionAllow.Media -0xacb04f4eac00b0c1 BrowserPlugin.PermissionAllow.NewWindow -0x22e3b8fb14f52567 BrowserPlugin.PermissionAllow.PointerLock -0x72265ae5cdb0f2a7 BrowserPlugin.PermissionDeny.Download -0x26bf51e48e5d3ea9 BrowserPlugin.PermissionDeny.Geolocation -0xd04b55f5fd0ebf0e BrowserPlugin.PermissionDeny.JSDialog -0x7fd68dfe783d4d92 BrowserPlugin.PermissionDeny.Media -0x5d9f67464e131ce8 BrowserPlugin.PermissionDeny.NewWindow -0x0e3e6d08f647aa69 BrowserPlugin.PermissionDeny.PointerLock -0x24941c4fd42fb51f CanCommitURL_BlockedAndKilled -0xea4788705e6873b4 Cancel -0xb1c07c66ce4ae2ac Caption_ClickTogglesMaximize -0x96c3ac2d2a5d9dba Caption_GestureTogglesMaximize -0x13b9d3430f0ce5a7 Cast_Sender_CastDeviceSelected -0xc8aef1b8545c6760 Cast_Sender_CastEnterFullscreen -0x7e494615a0a3ffd5 Cast_Sender_CastMediaType -0x19a12dba54934c30 Cast_Sender_CastPlayRequested -0x34878f681fad82d4 Cast_Sender_YouTubeDeviceSelected -0x89394b102e55da81 ClearAuthenticationCache -0x6bd5f5b094096aa7 ClearBrowsingData_Autofill -0xae5b20986fb024db ClearBrowsingData_Cache -0xb603e4fc4d7fe748 ClearBrowsingData_ContentLicenses -0x6755e17f118c99d8 ClearBrowsingData_Cookies -0xea9b835bf0310f85 ClearBrowsingData_Downloads -0x02a6a06a2b91e758 ClearBrowsingData_Everything -0xe3c9686626019346 ClearBrowsingData_History -0x86678d0ede469c46 ClearBrowsingData_LSOData -0x4c15666f9dd774eb ClearBrowsingData_LastDay -0xbbbdc8f919aaba08 ClearBrowsingData_LastHour -0xf38b7fedd47d32dc ClearBrowsingData_LastMonth -0xa18138df43b60210 ClearBrowsingData_LastWeek -0xe4d7f2be93ee4d1e ClearBrowsingData_MaskContainsExtension -0xadd630995b43ce2f ClearBrowsingData_MaskContainsProtectedWeb -0x1f885e1523585d6f ClearBrowsingData_MaskContainsUnprotectedWeb -0x511e8366cdda3890 ClearBrowsingData_Passwords -0x3db76495a0acc98c ClearBrowsingData_ServerBoundCerts -0xdaaff0c5b7682b18 ClearBrowsingData_ShaderCache -0x6d69a061f7adf595 ClearBrowsingData_ShowDlg -0x9fd631c62234969a ClearSelection -0x49c37636ddeb5a10 ClearSiteDataOnExitDisabled -0xf63362e0c7d7420d ClearSiteDataOnExitEnabled -0xdf8129e4f853f264 ClickDisableGpuAcceleration -0xf2c974774a0fd57e ClickToPlay_AllowAlways -0x3589e51b0b1bf730 ClickToPlay_Dismiss_Infobar -0xe1b2d67ea37c5ba0 ClickToPlay_InfobarShown -0xcfe5a8d495d7df34 ClickToPlay_LoadAll_Bubble -0xb30dcb1850e21bce ClickToPlay_LoadAll_Infobar -0x9cd1157e30fc2b55 ClickedBookmarkBarAppsShortcutButton -0x57b3678b429935ee ClickedBookmarkBarFolder -0x55c851e7c3d9a792 ClickedBookmarkBarURLButton -0x4f667771b8f484b1 CloseAllSuppressedPopups -0x74f6ce7e0602ca13 CloseButton_Clk -0xde70efb3bc9fe575 CloseFromContextMenu -0x9436ccb9a5cc6a27 CloseTab -0x4443008dac19bfbc CloseTabByKey -0x7596c9721c97c14c CloseTab_Accelerator -0xd477cbce1681d404 CloseTab_Mouse -0x4b31de70a21d7903 CloseWebApp -0xdf8926d323575ff8 CloseWindow -0xcd94a7d0199de11d CloseWindowByKey -0x9c8159a6164781a3 ConfirmNotToOrderSpringCharger -0x1829a4d20ed931da ConfirmOrderSpringCharger -0x425627724623014d ConfirmOrderSpringChargerByPhone -0x66cda49e27d7c2d6 ConfirmOrderSpringChargerOnline -0x396aed4a5222c982 ConfirmSafeSpringCharger -0xdbb661a1a17b4346 ConfirmStillUseOriginalChargerAfterOrder -0xa0ebbbdb0eca8d89 ConflictBadge -0x355517777b3f002e ConflictingModuleNotificationDismissed -0x2f1ba1d06c32c45d ConflictingModuleNotificationShown -0xe9bfc6aeb6f1668e ConnectivityDiagnostics.LaunchSource.OfflineChromeOS -0xcfe3ac03c42c1b0c ConnectivityDiagnostics.LaunchSource.WebStore -0x81e7cde22e323f67 ConnectivityDiagnostics.UA.LogsShown -0x44111a04f143bfff ConnectivityDiagnostics.UA.PassingTestsShown -0xc49cd7f91fc3e8f9 ConnectivityDiagnostics.UA.SettingsShown -0x2273dcc7c3f0f0e7 ConnectivityDiagnostics.UA.TestResultExpanded -0x36e43e592dddc21b ConnectivityDiagnostics.UA.TestSuiteRun -0x33056b44f816c204 CookieBlockingDisabledPerDefault -0xcc192d44d8f426c7 CookieBlockingEnabledPerDefault -0x5fb63579fc981698 Copy -0x89d1b3eda3d01e3a CopyToFindPboard -0xb3d0f42456c6eaf6 CopyURLToClipBoard -0x7f1e737de964f0e9 CreateHostedApp -0x2aeb39c03cc86464 CreateLink -0x1225d110ef7fba17 CreateProfile -0x30604f84327d0ae5 CreateShortcut -0x8b83a029888765ac CriticalNotificationShown -0x3811e868a8b2639a CriticalNotification_AutoRestart -0x74d29a646c3b335c CriticalNotification_Ignore -0x417f35273c2e009b CriticalNotification_Restart -0xfdf6ee64a0588855 Cryptohome.PKCS11InitFail -0xeb334dca00e390e0 Cut -0x24c15c9cd91f5be0 DataReductionProxy_PromoDisplayed -0xdfc419c441193fae DataReductionProxy_PromoLearnMore -0x3e571d8a556acc27 DataReductionProxy_TurnedOff -0xb69483d9936c050e DataReductionProxy_TurnedOn -0x92ebcc84f3abf206 DataReductionProxy_TurnedOnFromPromo -0xb94d8a074eddd267 Debugger -0xf2a6c498fb90ee34 Delete -0xee9ce204f091eb10 DeleteBackward -0x77996bb1dd52320d DeleteForward -0xef062a4139c5c9f7 DeleteSelection -0x7845bb87dfa671c5 DeleteToEndOfParagraph -0x6c02931afa83fea8 DeleteWordBackward -0x433dee161f756bb5 DeleteWordForward -0x6efd3c1be94b4370 Destination_Application_Edit -0x599586022e671645 Destination_Application_Launch -0x7311c4dcd9426448 Destination_Application_Uninstall -0x2caa887c60d0edea Destination_Bookmarks -0x06fe9a0e5226b124 Destination_Bookmarks_OpenURL -0x215c802c8c94cbed Destination_Downloads -0x0813fdaffe0ea8c3 Destination_History -0xdff1c6338f5f5371 Destination_History_OpenURL -0x9d2d922e923f97f9 Destination_MostVisited -0xee9739d40c3c4a7a Destination_MostVisited_OpenURL -0x68b765b881701d50 Destination_Sessions -0xee96389c3a0ed430 DevTools_InspectAndroidPage -0xdce5103c1acca60d DevTools_InspectAndroidWebView -0xd3e90631d6d04d51 DevTools_InspectElement -0xcd5fb3d0ace59c55 DevTools_InspectRenderer -0xe28426fa882a0b44 DevTools_InspectWorker -0xbadaf91b6bdbbe68 DevTools_ToggleConsole -0xddaad2f5e9238157 DevTools_ToggleWindow -0x155de7afd2eae387 DevicesPage_AddPrintersClicked -0x81bab07ab7408439 DevicesPage_LogInStartedFromDeviceListPromo -0x97316d4fc731c000 DevicesPage_LogInStartedFromRegisterPromo -0x876ad499b66d66f3 DevicesPage_ManageClicked -0x62644a4c7aa75135 DevicesPage_Opened -0xc95009afab055732 DevicesPage_RegisterCancel -0xd5e873a27b2a9d34 DevicesPage_RegisterClicked -0x48589e4ef5d72bba DevicesPage_RegisterFailure -0x4e7f3f684b09d823 DevicesPage_RegisterSuccess -0xe581401517f920ca DisabledExtensionNotificationDismissed -0x240b0da0a404d35c DisabledExtensionNotificationShown -0xdad0f491267f672e DockingWindow_Bottom -0x7ecb78846fadf9bf DockingWindow_BottomHalf -0xc818526e20834ebf DockingWindow_Left -0xf87264dd1cac30d9 DockingWindow_LeftHalf -0xa9f758a358041079 DockingWindow_Maximize -0xc68b578019349940 DockingWindow_Right -0xec44ad3c479571f4 DockingWindow_RightHalf -0x91991a7061775526 DockingWindow_Top -0xed75712b0eb1913c Duplicate -0xae5fcc3ad3a00c19 EditApplicationSettings -0x0326e6132edca57b EditKeywords -0x2e08637d43bc3450 EditSearchEngines -0x9a2fdef24427ff67 EmailPageLocation -0xb63daeca06ecea16 EnterFullScreenWithWrenchMenu -0xfef46e5063ce3dc7 Exit -0xcf0c759bda6783fd ExtensionNotFound_ED -0x29c354a2e25e4bc9 ExtensionWipeoutNotificationShown -0xdf56dffe242f621a Extensions.ExtensionInstalled -0x4f07c158c8047ab9 Extensions.ExtensionUninstalled -0x08566bf746b7f665 Extensions.IDChangedError -0xa295e3ad39bbacc0 Extensions.WebStoreLaunch -0xbea4c2c8eb82d058 Feedback -0x4268aeb48d5c0d1e FileBrowser.CreateNewFolder -0x604a1468d08b7c7b FileBrowser.PhotoEditor.Edit -0xca74d47b273dd801 FileBrowser.PhotoEditor.View -0xf94a9b198a97d95b FileBrowser.SuggestApps.ShowDialog -0xd1b4f6b656a826e8 FilterURLTermiate_About -0x933a3a418a658dec FilterURLTermiate_Blocked -0x6a372395e62bd36e FilterURLTermiate_Invalid -0x4cfa6c981549e990 Find -0x058404d575478e31 FindNext -0xca56592cf013fc40 FindPrevious -0xd9b084b400f26439 FindString -0x79f97bfa526b56ec FirstRunDef_Accept -0x7ff73528feb7491b FocusAppMenu -0x05804843ffe72695 FocusBookmarksToolbar -0x44c489e30171039c FocusChromeOSStatus -0x1e226eae1a9e27ee FocusInfobars -0xff4066491e7794bc FocusLocation -0x930bb978f3a88be2 FocusNextPane -0x5e6c303e567af436 FocusPageAndAppMenus -0x658708a96ac44ccc FocusPreviousPane -0x5b7b952796f109ad FocusSearch -0xc27e065ab57a01e7 FocusToolbar -0x12d7f80b419064fa FontName -0x24b0296570b11c95 FontSize -0x3c2f5208ba19e684 FontSizeDelta -0xe45960835dd83532 ForeColor -0x674e7408732120dc FormatBlock -0x67d2f6740a8eaebf Forward -0x407c6f01fc926581 ForwardDelete -0x0659a6d28eeb3cdc ForwardMenu_ChapterClick1 -0x1cf8a9593dddd549 ForwardMenu_ChapterClick10 -0x282fb4c4773f6091 ForwardMenu_ChapterClick11 -0x7aaaba5ddf181715 ForwardMenu_ChapterClick12 -0xbf183c3b27f4612a ForwardMenu_ChapterClick13 -0x7b457b6824846628 ForwardMenu_ChapterClick14 -0xe7b6c76310cf28a0 ForwardMenu_ChapterClick15 -0xf83ba97f2dc5eda7 ForwardMenu_ChapterClick16 -0x9f7e9db5377a87fd ForwardMenu_ChapterClick17 -0x3b7969fdde988c47 ForwardMenu_ChapterClick18 -0xe00eaa33028aef1e ForwardMenu_ChapterClick19 -0x22ae6afaebb88ede ForwardMenu_ChapterClick2 -0xeaf788ceb40b4c52 ForwardMenu_ChapterClick3 -0xc36c2fcdcce64d3c ForwardMenu_ChapterClick4 -0xa4989f324b58fed9 ForwardMenu_ChapterClick5 -0x0f52ae4eda2f03a2 ForwardMenu_ChapterClick6 -0x50b4aac8ef09fad6 ForwardMenu_ChapterClick7 -0x6ad416ed5bbe25c3 ForwardMenu_ChapterClick8 -0xd636afb40773f667 ForwardMenu_ChapterClick9 -0x80457994e5624cb9 ForwardMenu_HistoryClick1 -0x4afed56ff6097552 ForwardMenu_HistoryClick10 -0xdc2821e4b1e4f4a5 ForwardMenu_HistoryClick11 -0x49d0080788fb2dcf ForwardMenu_HistoryClick12 -0x93c16e3dfa87e30e ForwardMenu_HistoryClick13 -0x73d941830a276551 ForwardMenu_HistoryClick14 -0xe7579f3c29b77b5b ForwardMenu_HistoryClick15 -0xb9c4a0ec5f6fdce5 ForwardMenu_HistoryClick16 -0x7c4fb0eac18dc2f7 ForwardMenu_HistoryClick17 -0x3130d901f8b9c6fe ForwardMenu_HistoryClick18 -0x2255d4f02bee3df3 ForwardMenu_HistoryClick19 -0xa975db997d781b24 ForwardMenu_HistoryClick2 -0xc22f8eaba64014d3 ForwardMenu_HistoryClick3 -0x4cadc0f6a99ba415 ForwardMenu_HistoryClick4 -0xe2f627fd545952fb ForwardMenu_HistoryClick5 -0x41b16a28f2130885 ForwardMenu_HistoryClick6 -0xf9a72fbc4c89c2b6 ForwardMenu_HistoryClick7 -0x4787fdb9e4526676 ForwardMenu_HistoryClick8 -0xb685d7994214aa1f ForwardMenu_HistoryClick9 -0xb8ea5cd4ac9a7a71 ForwardMenu_Popup -0x87bdcab6bfd481db ForwardMenu_ShowFullHistory -0x78646175083b9abe Gesture_Overview -0x5f075ae3e1f9d038 Go -0xab2334cdb766e7c7 GoogleNow.ButtonClicked0 -0xc06f4ecf7cf01b27 GoogleNow.ButtonClicked1 -0x813aeef215b68741 GoogleNow.Dismissed -0x436c20892470d838 GoogleNow.MessageClicked -0x80726a05369be7ca GoogleNow.WelcomeToastClickedNo -0x1e6b0ae24163b1e8 GoogleNow.WelcomeToastClickedYes -0x7813d5bea46a5fa8 GoogleNow.WelcomeToastDismissed -0xd6c29b06a8c7e3e2 GpuAccelerationDisabled -0xd18fed7efb6cf062 GpuAccelerationEnabled -0x696c3c52634726aa HiliteColor -0x77201c4b10451e59 HistoryPage_BookmarkStarClicked -0x6590f397656717f0 HistoryPage_CancelRemoveSelected -0x0368c6ea1d547d64 HistoryPage_ConfirmRemoveSelected -0x29ad2e81f9dd07b0 HistoryPage_EntryLinkClick -0x408ecf8ef58e563e HistoryPage_EntryLinkRightClick -0xef342c7f49d28270 HistoryPage_EntryMenuRemoveFromHistory -0xa99f2b83f809c313 HistoryPage_EntryMenuShowMoreFromSite -0xb58708176abcc0fe HistoryPage_InitClearBrowsingData -0x0138978105397298 HistoryPage_NewerHistoryClick -0x5027e981a37ad402 HistoryPage_NewestHistoryClick -0xd47b8fce881ce2df HistoryPage_OlderHistoryClick -0xea2d5f6015fefa6c HistoryPage_RemoveSelected -0x00431057dee9c3a2 HistoryPage_Search -0xee4e188d1a5818c1 HistoryPage_SearchResultClick -0xee812ce81df64b01 HistoryPage_SearchResultRemove -0x4869b7ac0caae3fe History_DeleteHistory -0xddf00e6e13ebc7ab History_DragIcon -0xca7db0b9cda2eecd History_DragThumbnail -0xdf8379d1cab60cbf History_Search -0x8cf04a9734132302 Home -0x3f8725913f9606e0 ImportLockDialogCocoa_Shown -0x10209a50a49ea88f ImportLockDialogGtk_Shown -0x03154e02d9a7d1b0 ImportLockDialogView_Shown -0x2679e82f33d66fc0 Import_ShowDlg -0x497470e76a40fc53 Indent -0xddbd530e88f0baad InputMethodOptions_Open_chewing -0x4b9b7bb2668d0482 InputMethodOptions_Open_english-m -0xfe212a1637f75443 InputMethodOptions_Open_hangul -0xf51582a1f3563c5d InputMethodOptions_Open_m17n:am:sera -0x155fe2aa889c6475 InputMethodOptions_Open_m17n:ar:kbd -0xddee376a378bb55a InputMethodOptions_Open_m17n:bn:itrans -0x702d3712351014c9 InputMethodOptions_Open_m17n:fa:isiri -0xf3d0bd08d56571df InputMethodOptions_Open_m17n:gu:itrans -0xcd3d52a63eb9d19f InputMethodOptions_Open_m17n:hi:itrans -0x76e4ec0d7dac8fbd InputMethodOptions_Open_m17n:kn:itrans -0x4005c392a6808200 InputMethodOptions_Open_m17n:ml:itrans -0x2a6f509c2aa50853 InputMethodOptions_Open_m17n:mr:itrans -0x231bb5b79df1109d InputMethodOptions_Open_m17n:ta:inscript -0x4f6c3bf8089610a3 InputMethodOptions_Open_m17n:ta:itrans -0x641ffe0ae23919d9 InputMethodOptions_Open_m17n:ta:phonetic -0x74ac378c41355823 InputMethodOptions_Open_m17n:ta:tamil99 -0x44628dae21677214 InputMethodOptions_Open_m17n:ta:typewriter -0xab2182c49b66b7d6 InputMethodOptions_Open_m17n:te:itrans -0x84a453cc41b70ade InputMethodOptions_Open_m17n:th:kesmanee -0x781cb9476ef74fb6 InputMethodOptions_Open_m17n:th:pattachote -0x7ed4a3c1dbbea563 InputMethodOptions_Open_m17n:th:tis820 -0x515db9088433579e InputMethodOptions_Open_m17n:vi:tcvn -0x28585f828d27064e InputMethodOptions_Open_m17n:vi:telex -0xaa5bd22b752b2402 InputMethodOptions_Open_m17n:vi:viqr -0x32caeac9c52a0b3e InputMethodOptions_Open_m17n:vi:vni -0x9b5fe154dcfed5fc InputMethodOptions_Open_m17n:zh:cangjie -0x4b904484c5ae5ef9 InputMethodOptions_Open_m17n:zh:quick -0xd760683dc9d7524f InputMethodOptions_Open_mozc -0xf323966e4ec000ab InputMethodOptions_Open_mozc-chewing -0xaf5b5ca01e17f82f InputMethodOptions_Open_mozc-dv -0xd5513441251b0dfe InputMethodOptions_Open_mozc-hangul -0x560b367165104ca0 InputMethodOptions_Open_mozc-jp -0xfc8099598cc3d1e6 InputMethodOptions_Open_pinyin -0xcef96af4d892e9ab InputMethodOptions_Open_pinyin-dv -0xcd2bbecca0235637 InputMethodOptions_Open_xkb:am:phonetic:arm -0x08ac76684d7e7d26 InputMethodOptions_Open_xkb:be::fra -0x850b8ba271d39949 InputMethodOptions_Open_xkb:be::ger -0x0b947d8e36f5c932 InputMethodOptions_Open_xkb:be::nld -0x46a87a1ab952dc04 InputMethodOptions_Open_xkb:bg::bul -0xa46c41e1afe6014b InputMethodOptions_Open_xkb:bg:phonetic:bul -0x822bf0422c6827cd InputMethodOptions_Open_xkb:br::por -0xc3f1279ce3e44700 InputMethodOptions_Open_xkb:by::bel -0xabf8d015035007d4 InputMethodOptions_Open_xkb:ca::fra -0x1c146e1accb26ba1 InputMethodOptions_Open_xkb:ca:eng:eng -0xbf0c1c3a1c9adf4d InputMethodOptions_Open_xkb:ca:multix:fra -0x1092170d80d1a97e InputMethodOptions_Open_xkb:ch::ger -0xee168304fd52c6da InputMethodOptions_Open_xkb:ch:fr:fra -0x310e1c8edd3124fd InputMethodOptions_Open_xkb:cz::cze -0x0bcd06f57706c3ca InputMethodOptions_Open_xkb:cz:qwerty:cze -0xe7c956d1a5fe18b8 InputMethodOptions_Open_xkb:de::ger -0x6ae0a3c608578b06 InputMethodOptions_Open_xkb:de:neo:ger -0x54fd79dcc2c5078e InputMethodOptions_Open_xkb:dk::dan -0xaaa3e638c0277e5d InputMethodOptions_Open_xkb:ee::est -0x10d646c96bb290b0 InputMethodOptions_Open_xkb:es::spa -0x9e9970f4b46c2945 InputMethodOptions_Open_xkb:es:cat:cat -0x365b92eea899e7e7 InputMethodOptions_Open_xkb:fi::fin -0xc81eae3dfb9e0b9d InputMethodOptions_Open_xkb:fr::fra -0xbcf08367d19013e3 InputMethodOptions_Open_xkb:gb:dvorak:eng -0x526ffe2c52ecda24 InputMethodOptions_Open_xkb:gb:extd:eng -0xfbaf6f2b064e7384 InputMethodOptions_Open_xkb:ge::geo -0x8030ee073cf7a3c6 InputMethodOptions_Open_xkb:gr::gre -0xd154dbf3bb7c8107 InputMethodOptions_Open_xkb:hr::scr -0x4f9eafd4473f6e19 InputMethodOptions_Open_xkb:hu::hun -0x33f2b9f6c8539fde InputMethodOptions_Open_xkb:il::heb -0x5f87feb98aea6b1c InputMethodOptions_Open_xkb:is::ice -0x36471978fb1b0bea InputMethodOptions_Open_xkb:it::ita -0x22020a263d5795ed InputMethodOptions_Open_xkb:jp::jpn -0xed01f2795c864acf InputMethodOptions_Open_xkb:kr:kr104:kor -0xfa8c5d3c569dfb46 InputMethodOptions_Open_xkb:latam::spa -0xc165f3fd0b803830 InputMethodOptions_Open_xkb:lt::lit -0x18b9e4dbb8025455 InputMethodOptions_Open_xkb:lv::lav -0xcb6f3f90c1010f75 InputMethodOptions_Open_xkb:lv:apostrophe:lav -0xaa9434274f892344 InputMethodOptions_Open_xkb:mn::mon -0x34a05814ab58931d InputMethodOptions_Open_xkb:nl::nld -0x4d16bf11c3ad7cd0 InputMethodOptions_Open_xkb:no::nob -0x25659d10deab047d InputMethodOptions_Open_xkb:no::nor -0xe39db1a9105a1816 InputMethodOptions_Open_xkb:pl::pol -0x545654bd66e632ff InputMethodOptions_Open_xkb:pt::por -0x0b2eb1ceb2af7e31 InputMethodOptions_Open_xkb:ro::rum -0x397d3a57fed5bbac InputMethodOptions_Open_xkb:rs::srp -0xd6b7cc8f607a5d62 InputMethodOptions_Open_xkb:ru::rus -0xb6ded54d82c9c63d InputMethodOptions_Open_xkb:ru:phonetic:rus -0xf18cf6b9c54bcd9e InputMethodOptions_Open_xkb:se::swe -0x4fcae8c67666b3a4 InputMethodOptions_Open_xkb:si::slv -0x06425a2a094ed04f InputMethodOptions_Open_xkb:sk::slo -0x0217ffe65d9240b7 InputMethodOptions_Open_xkb:tr::tur -0x029ef6d08daae227 InputMethodOptions_Open_xkb:ua::ukr -0x8242054ab1bd9fdf InputMethodOptions_Open_xkb:us::eng -0x6f0ca0c3f941e7f3 InputMethodOptions_Open_xkb:us:altgr-intl:eng -0x3cafeb09bc83fb78 InputMethodOptions_Open_xkb:us:colemak:eng -0x8c4bc3c1ddaf086f InputMethodOptions_Open_xkb:us:dvorak:eng -0xcdb6a2617df255a0 InputMethodOptions_Open_xkb:us:intl:eng -0x3f383d6272a64128 InsertBacktab -0x22d1980eb6def616 InsertHTML -0x0ff692418469f747 InsertHorizontalRule -0xd90a0bafb43b7937 InsertImage -0x6243f0401d9d1817 InsertLineBreak -0x819ce2a733068b4d InsertNewline -0x05534baac660c1e0 InsertNewlineInQuotedContent -0xfe80e1819088136d InsertOrderedList -0x876c542c54254736 InsertParagraph -0x883d075e3e6d670c InsertTab -0xb8890ced118a58f6 InsertText -0x1342e1e52f335f69 InsertUnorderedList -0x57267fa8e684477a InspectDevices -0xb7c371f7dd19c6fd InstallSite -0x9ee757dac968cead InstantExtended.MostVisitedClicked -0x3545f6127f5688ab InstantExtended.ShowNTP -0x67ae87c0c5a6f55d InstantExtended.ShowSRP -0x1d874710ccdcd46b Italic -0x5569092107ae9fb0 JustifyCenter -0xb2e54b8c7671e92e JustifyLeft -0xcd362d0d3c2a301a JustifyRight -0xbcdd33480e8d115d KeySystemSupport.Widevine.Queried -0x9768048447968d10 KeySystemSupport.Widevine.Supported -0x2bde1e6310d1cd7d KeySystemSupport.WidevineWithType.Queried -0xc15bca86fafab1d5 KeySystemSupport.WidevineWithType.Supported -0x54eeedf1d26e7698 KeywordEditor_AddKeyword -0x204aad0f4a1f0f22 KeywordEditor_AddKeywordJS -0x37ac83353fd9be1f KeywordEditor_ModifiedKeyword -0x2d038477eb20483b KeywordEditor_RemoveKeyword -0xab20f097361154dc LanguageChange_Accept -0x98ee7b2a2893443f LanguageChange_Revert -0xcce20fb4bce11250 LanguageConfigView_Open -0x6c9d4656451fe020 LanguageMenuButton_InputMethodChanged -0x9895b811fa1a2f7e LanguageMenuButton_Open -0x4bef75db451d23fb LanguageOptions_DisableInputMethod_chewing -0xf8fff1e1c48a01f9 LanguageOptions_DisableInputMethod_english-m -0xf336ef307e081efe LanguageOptions_DisableInputMethod_hangul -0x473fff093fed5585 LanguageOptions_DisableInputMethod_m17n:am:sera -0x31f603e454ce9301 LanguageOptions_DisableInputMethod_m17n:ar:kbd -0x5cb365ca1a9f0a87 LanguageOptions_DisableInputMethod_m17n:bn:itrans -0x8d99e4c7475dbc4e LanguageOptions_DisableInputMethod_m17n:fa:isiri -0xa7e7896176de5020 LanguageOptions_DisableInputMethod_m17n:gu:itrans -0x978a3702045ddd98 LanguageOptions_DisableInputMethod_m17n:hi:itrans -0x7b8c5bcdf04dcec9 LanguageOptions_DisableInputMethod_m17n:kn:itrans -0xe103b81ce59e1ff6 LanguageOptions_DisableInputMethod_m17n:ml:itrans -0x466e0dad1b9632fd LanguageOptions_DisableInputMethod_m17n:mr:itrans -0x52ef1a32c928ab9f LanguageOptions_DisableInputMethod_m17n:ta:inscript -0x3b7bccba8f7c9d9d LanguageOptions_DisableInputMethod_m17n:ta:itrans -0xaaa84d23cee33ba2 LanguageOptions_DisableInputMethod_m17n:ta:phonetic -0x9d9736754936c0d2 LanguageOptions_DisableInputMethod_m17n:ta:tamil99 -0x915153efd566a118 LanguageOptions_DisableInputMethod_m17n:ta:typewriter -0x0e3555d2c2574839 LanguageOptions_DisableInputMethod_m17n:te:itrans -0x3bf8f7a682215755 LanguageOptions_DisableInputMethod_m17n:th:kesmanee -0x7ddb7bc2e25e4c86 LanguageOptions_DisableInputMethod_m17n:th:pattachote -0x7c79ba0a7ddc551f LanguageOptions_DisableInputMethod_m17n:th:tis820 -0x64a3fb231691a106 LanguageOptions_DisableInputMethod_m17n:vi:tcvn -0x25c742d3c23ff71e LanguageOptions_DisableInputMethod_m17n:vi:telex -0x2282d16406d4149c LanguageOptions_DisableInputMethod_m17n:vi:viqr -0xc46962be71e81a74 LanguageOptions_DisableInputMethod_m17n:vi:vni -0x6f8182b9533a7bf6 LanguageOptions_DisableInputMethod_m17n:zh:cangjie -0xdd214c6e6e223f2c LanguageOptions_DisableInputMethod_m17n:zh:quick -0xe5b7a334a40a29b1 LanguageOptions_DisableInputMethod_mozc -0xb04e0a3af2d11cb7 LanguageOptions_DisableInputMethod_mozc-chewing -0x34c0af16cc2283f8 LanguageOptions_DisableInputMethod_mozc-dv -0x39e72b2fc3872c16 LanguageOptions_DisableInputMethod_mozc-hangul -0x1e33e194e43d85ff LanguageOptions_DisableInputMethod_mozc-jp -0xfd89518df98afaf3 LanguageOptions_DisableInputMethod_pinyin -0xd6157bb480ef90f7 LanguageOptions_DisableInputMethod_pinyin-dv -0x082f55f1bc37cd4f LanguageOptions_DisableInputMethod_xkb:am:phonetic:arm -0x20108869230aba12 LanguageOptions_DisableInputMethod_xkb:be::fra -0x977dc3accf7e638b LanguageOptions_DisableInputMethod_xkb:be::ger -0xcf0b649f9a1a59c7 LanguageOptions_DisableInputMethod_xkb:be::nld -0xde0ba68a4ea3a9bf LanguageOptions_DisableInputMethod_xkb:bg::bul -0xdaacfedb410a091e LanguageOptions_DisableInputMethod_xkb:bg:phonetic:bul -0x60f266cb898affd4 LanguageOptions_DisableInputMethod_xkb:br::por -0x1a2acd24d6cb15dc LanguageOptions_DisableInputMethod_xkb:by::bel -0x4fecb3e04929aca2 LanguageOptions_DisableInputMethod_xkb:ca::fra -0x197d8fb2f176e036 LanguageOptions_DisableInputMethod_xkb:ca:eng:eng -0x03926437a3eb5089 LanguageOptions_DisableInputMethod_xkb:ca:multix:fra -0x64305300f1ffa8af LanguageOptions_DisableInputMethod_xkb:ch::ger -0xb3517f39d893bc56 LanguageOptions_DisableInputMethod_xkb:ch:fr:fra -0xf407ba1d8f098570 LanguageOptions_DisableInputMethod_xkb:cz::cze -0x7e6f907068c36db8 LanguageOptions_DisableInputMethod_xkb:cz:qwerty:cze -0x66ec7b7c518dab3c LanguageOptions_DisableInputMethod_xkb:de::ger -0x562bc573da86fe6c LanguageOptions_DisableInputMethod_xkb:de:neo:ger -0xaab2b2ab32b79eaf LanguageOptions_DisableInputMethod_xkb:dk::dan -0x231800f9acc70b4f LanguageOptions_DisableInputMethod_xkb:ee::est -0x55901fb5aa842097 LanguageOptions_DisableInputMethod_xkb:es::spa -0xec86a454fb80111e LanguageOptions_DisableInputMethod_xkb:es:cat:cat -0x18ca64de485033c8 LanguageOptions_DisableInputMethod_xkb:fi::fin -0x6d236611b97a8f64 LanguageOptions_DisableInputMethod_xkb:fr::fra -0x204bead7902d82d7 LanguageOptions_DisableInputMethod_xkb:gb:dvorak:eng -0x13facbf7da2f7826 LanguageOptions_DisableInputMethod_xkb:gb:extd:eng -0x72d0c84aff4d0574 LanguageOptions_DisableInputMethod_xkb:ge::geo -0x215d96a1bda18a53 LanguageOptions_DisableInputMethod_xkb:gr::gre -0x6e3d64f780b3424a LanguageOptions_DisableInputMethod_xkb:hr::scr -0x625fbaee633b4e53 LanguageOptions_DisableInputMethod_xkb:hu::hun -0x14a66e0b221a13bb LanguageOptions_DisableInputMethod_xkb:il::heb -0xe6e2f36edac4f9f5 LanguageOptions_DisableInputMethod_xkb:is::ice -0xf5dbc48f5bcfd65f LanguageOptions_DisableInputMethod_xkb:it::ita -0x11cb89758a2d2606 LanguageOptions_DisableInputMethod_xkb:jp::jpn -0x02b207c3740c92db LanguageOptions_DisableInputMethod_xkb:kr:kr104:kor -0xbe433a85af5f3219 LanguageOptions_DisableInputMethod_xkb:latam::spa -0xcafacab7d5bec6c3 LanguageOptions_DisableInputMethod_xkb:lt::lit -0xa310032375e1a775 LanguageOptions_DisableInputMethod_xkb:lv::lav -0x683e9f41fec504f1 LanguageOptions_DisableInputMethod_xkb:lv:apostrophe:lav -0xc2f4ecbc33cac53c LanguageOptions_DisableInputMethod_xkb:mn::mon -0xfb0bedc9f892abf2 LanguageOptions_DisableInputMethod_xkb:nl::nld -0x29d544cb2af7a80a LanguageOptions_DisableInputMethod_xkb:no::nob -0xc7210bf937ebf4d1 LanguageOptions_DisableInputMethod_xkb:no::nor -0x4f7d52ae0938b86e LanguageOptions_DisableInputMethod_xkb:pl::pol -0xc7123952f2b4bf52 LanguageOptions_DisableInputMethod_xkb:pt::por -0xbf5c339263965e41 LanguageOptions_DisableInputMethod_xkb:ro::rum -0xf4c88d1eb003f153 LanguageOptions_DisableInputMethod_xkb:rs::srp -0xddc77955cace9f69 LanguageOptions_DisableInputMethod_xkb:ru::rus -0xb6e2bdd72bc5ca1b LanguageOptions_DisableInputMethod_xkb:ru:phonetic:rus -0xbdbbb828f1afce9f LanguageOptions_DisableInputMethod_xkb:se::swe -0xe65a7b8f5c72a35b LanguageOptions_DisableInputMethod_xkb:si::slv -0x8e05ca20d7d104fa LanguageOptions_DisableInputMethod_xkb:sk::slo -0x83928dfd8c874fd0 LanguageOptions_DisableInputMethod_xkb:tr::tur -0x15f38552ce3ef440 LanguageOptions_DisableInputMethod_xkb:ua::ukr -0x40118f4b64720619 LanguageOptions_DisableInputMethod_xkb:us::eng -0x99b1530d498aa978 LanguageOptions_DisableInputMethod_xkb:us:altgr-intl:eng -0x092d37b467b2355b LanguageOptions_DisableInputMethod_xkb:us:colemak:eng -0x28a17da0e5170d9c LanguageOptions_DisableInputMethod_xkb:us:dvorak:eng -0x36618553183c61a0 LanguageOptions_DisableInputMethod_xkb:us:intl:eng -0xbf74d2491fd43546 LanguageOptions_EnableInputMethod_chewing -0xd9282b12fa5f188f LanguageOptions_EnableInputMethod_english-m -0xa3850d86987729e3 LanguageOptions_EnableInputMethod_hangul -0x3f4b10aeaec96ce8 LanguageOptions_EnableInputMethod_m17n:am:sera -0xbd41d816d8ffa4d0 LanguageOptions_EnableInputMethod_m17n:ar:kbd -0xc203f3b486a353a5 LanguageOptions_EnableInputMethod_m17n:bn:itrans -0xba649d035929fcc7 LanguageOptions_EnableInputMethod_m17n:fa:isiri -0xed3203cbaaa64216 LanguageOptions_EnableInputMethod_m17n:gu:itrans -0xd55995652310e97d LanguageOptions_EnableInputMethod_m17n:hi:itrans -0x81829d172068cd4a LanguageOptions_EnableInputMethod_m17n:kn:itrans -0x6735d1bbdb6402b2 LanguageOptions_EnableInputMethod_m17n:ml:itrans -0xe446ca103495822f LanguageOptions_EnableInputMethod_m17n:mr:itrans -0x4a404258c039c9f7 LanguageOptions_EnableInputMethod_m17n:ta:inscript -0x99c1dad1382f9723 LanguageOptions_EnableInputMethod_m17n:ta:itrans -0x4709812f00883cc2 LanguageOptions_EnableInputMethod_m17n:ta:phonetic -0x4d7c4797ad697bbd LanguageOptions_EnableInputMethod_m17n:ta:tamil99 -0x638a88a46df1a617 LanguageOptions_EnableInputMethod_m17n:ta:typewriter -0xbfa551d544d618b0 LanguageOptions_EnableInputMethod_m17n:te:itrans -0xc9349a3c4ea64758 LanguageOptions_EnableInputMethod_m17n:th:kesmanee -0x8ebf5ecdd9403d86 LanguageOptions_EnableInputMethod_m17n:th:pattachote -0xc1771d7b829a738e LanguageOptions_EnableInputMethod_m17n:th:tis820 -0x094f24c724c35098 LanguageOptions_EnableInputMethod_m17n:vi:tcvn -0x8f062dc3fbc54bd6 LanguageOptions_EnableInputMethod_m17n:vi:telex -0xb31dc2cc3a8b46cd LanguageOptions_EnableInputMethod_m17n:vi:viqr -0x905e70ae85a254d9 LanguageOptions_EnableInputMethod_m17n:vi:vni -0xfef5e66f81905f45 LanguageOptions_EnableInputMethod_m17n:zh:cangjie -0x707054c3cc12ba9b LanguageOptions_EnableInputMethod_m17n:zh:quick -0xf757893b8f47d386 LanguageOptions_EnableInputMethod_mozc -0x12e67d2f62569179 LanguageOptions_EnableInputMethod_mozc-chewing -0x5e800e2879b118e1 LanguageOptions_EnableInputMethod_mozc-dv -0xac71bc394dac5dd1 LanguageOptions_EnableInputMethod_mozc-hangul -0x0876a103cad5d843 LanguageOptions_EnableInputMethod_mozc-jp -0x56da8023f0cbe550 LanguageOptions_EnableInputMethod_pinyin -0x95ce2c3e8dfefc08 LanguageOptions_EnableInputMethod_pinyin-dv -0x86b32c781065a4ae LanguageOptions_EnableInputMethod_xkb:am:phonetic:arm -0x7ddef14e3ae9ca9b LanguageOptions_EnableInputMethod_xkb:be::fra -0xcd6ff3d5d0cc4817 LanguageOptions_EnableInputMethod_xkb:be::ger -0xcc82746494498dc4 LanguageOptions_EnableInputMethod_xkb:be::nld -0x0aa7853408b07074 LanguageOptions_EnableInputMethod_xkb:bg::bul -0x699564bdd5712be7 LanguageOptions_EnableInputMethod_xkb:bg:phonetic:bul -0xc644632c62aeb8ca LanguageOptions_EnableInputMethod_xkb:br::por -0xfeaaaff1b0f0cdd6 LanguageOptions_EnableInputMethod_xkb:by::bel -0x3a2c133c17b2bc75 LanguageOptions_EnableInputMethod_xkb:ca::fra -0x20bc5b77deb279f8 LanguageOptions_EnableInputMethod_xkb:ca:eng:eng -0x13ddd0be1c6d8250 LanguageOptions_EnableInputMethod_xkb:ca:multix:fra -0x6cb09a3c8026a7aa LanguageOptions_EnableInputMethod_xkb:ch::ger -0x9ad6a4a9638b5782 LanguageOptions_EnableInputMethod_xkb:ch:fr:fra -0xa559566c8c6ea637 LanguageOptions_EnableInputMethod_xkb:cz::cze -0xb77baa735873e1f8 LanguageOptions_EnableInputMethod_xkb:cz:qwerty:cze -0x98af6ef5e3f72fb2 LanguageOptions_EnableInputMethod_xkb:de::ger -0xe3e1f005e4881269 LanguageOptions_EnableInputMethod_xkb:de:neo:ger -0xd42956556814d1ac LanguageOptions_EnableInputMethod_xkb:dk::dan -0x0a403824d4bf1af8 LanguageOptions_EnableInputMethod_xkb:ee::est -0x6c0a59356dde2eac LanguageOptions_EnableInputMethod_xkb:es::spa -0x8f92752907a878f4 LanguageOptions_EnableInputMethod_xkb:es:cat:cat -0xcd068af26c3eeb04 LanguageOptions_EnableInputMethod_xkb:fi::fin -0x23e04c4b87b2ec4a LanguageOptions_EnableInputMethod_xkb:fr::fra -0xa25f41f242fc4801 LanguageOptions_EnableInputMethod_xkb:gb:dvorak:eng -0x61b45586224d5505 LanguageOptions_EnableInputMethod_xkb:gb:extd:eng -0x1e94d2a6e72a6bdb LanguageOptions_EnableInputMethod_xkb:ge::geo -0xcf2286bdb20f63dd LanguageOptions_EnableInputMethod_xkb:gr::gre -0xad8f3703500bedcc LanguageOptions_EnableInputMethod_xkb:hr::scr -0xe37001b17655d436 LanguageOptions_EnableInputMethod_xkb:hu::hun -0x48ece720994692cd LanguageOptions_EnableInputMethod_xkb:il::heb -0xba17b44c4c906176 LanguageOptions_EnableInputMethod_xkb:is::ice -0xfbce8fb375d0cb10 LanguageOptions_EnableInputMethod_xkb:it::ita -0xe86c32f284eaa235 LanguageOptions_EnableInputMethod_xkb:jp::jpn -0x75254f6c14869f23 LanguageOptions_EnableInputMethod_xkb:kr:kr104:kor -0x3ac95cb77e3aecd3 LanguageOptions_EnableInputMethod_xkb:latam::spa -0x7e72cd1f5e56c8de LanguageOptions_EnableInputMethod_xkb:lt::lit -0x7e55464b40755c35 LanguageOptions_EnableInputMethod_xkb:lv::lav -0x984465cbf1dc14c7 LanguageOptions_EnableInputMethod_xkb:lv:apostrophe:lav -0x81e66978037b4c66 LanguageOptions_EnableInputMethod_xkb:mn::mon -0x1a1ca3eb2d8f9b6d LanguageOptions_EnableInputMethod_xkb:nl::nld -0x73bfcb9c835bcb38 LanguageOptions_EnableInputMethod_xkb:no::nob -0x06d15353036ca947 LanguageOptions_EnableInputMethod_xkb:no::nor -0x1e7c51aa38eb9c65 LanguageOptions_EnableInputMethod_xkb:pl::pol -0xa7e387a15749319e LanguageOptions_EnableInputMethod_xkb:pt::por -0x87a75b792f1d8ee1 LanguageOptions_EnableInputMethod_xkb:ro::rum -0x38e76dba9085fa94 LanguageOptions_EnableInputMethod_xkb:rs::srp -0x9c6ce402bd03337b LanguageOptions_EnableInputMethod_xkb:ru::rus -0x6bb6082988e4cbea LanguageOptions_EnableInputMethod_xkb:ru:phonetic:rus -0xf78f942da3223853 LanguageOptions_EnableInputMethod_xkb:se::swe -0x46d0c5799ae35ae7 LanguageOptions_EnableInputMethod_xkb:si::slv -0x00084283db086e29 LanguageOptions_EnableInputMethod_xkb:sk::slo -0xc079d20c400f3e61 LanguageOptions_EnableInputMethod_xkb:tr::tur -0xac38bf5ba676edfb LanguageOptions_EnableInputMethod_xkb:ua::ukr -0x4ae7cbf387b2ee2c LanguageOptions_EnableInputMethod_xkb:us::eng -0xfc019a30579d475d LanguageOptions_EnableInputMethod_xkb:us:altgr-intl:eng -0xf47b49df07dcafca LanguageOptions_EnableInputMethod_xkb:us:colemak:eng -0xf6b8e8d4de66cf77 LanguageOptions_EnableInputMethod_xkb:us:dvorak:eng -0x23aaf851e47f2bf7 LanguageOptions_EnableInputMethod_xkb:us:intl:eng -0xfa78305d269c1ec1 LanguageOptions_Open -0xda947fb4440a66e7 LanguageOptions_Restart -0xb5f8e1034ebaab43 LanguageOptions_SignOut -0x3bdcb57ed74b6f2c LanguageOptions_SpellCheckLanguageChange_af -0x0268501c247fa3e1 LanguageOptions_SpellCheckLanguageChange_am -0x9d68c5a82572b3a5 LanguageOptions_SpellCheckLanguageChange_ar -0x216ae3faf9f4fc61 LanguageOptions_SpellCheckLanguageChange_az -0x85bddda0d071875b LanguageOptions_SpellCheckLanguageChange_be -0x552a4f4066bb456b LanguageOptions_SpellCheckLanguageChange_bg -0xea6b28b89f3b1bc2 LanguageOptions_SpellCheckLanguageChange_bh -0x173c0736c9838394 LanguageOptions_SpellCheckLanguageChange_bn -0xa357a0df0b190220 LanguageOptions_SpellCheckLanguageChange_br -0x474752275567a519 LanguageOptions_SpellCheckLanguageChange_bs -0x77b12159bb08e0c0 LanguageOptions_SpellCheckLanguageChange_ca -0x6872456b4ea20026 LanguageOptions_SpellCheckLanguageChange_co -0x258da94c1135762c LanguageOptions_SpellCheckLanguageChange_cs -0x29a8f1a61033a69a LanguageOptions_SpellCheckLanguageChange_cy -0xb30aafb7259dcd76 LanguageOptions_SpellCheckLanguageChange_da -0xd4d51eee8ca53562 LanguageOptions_SpellCheckLanguageChange_de -0x8d90ebda20909ebe LanguageOptions_SpellCheckLanguageChange_de-AT -0x2311311ecb5272c2 LanguageOptions_SpellCheckLanguageChange_de-CH -0xdc02d8c4e8b01766 LanguageOptions_SpellCheckLanguageChange_de-DE -0x7ee2af2c5a437e1a LanguageOptions_SpellCheckLanguageChange_el -0x4fc6d56cdd72700e LanguageOptions_SpellCheckLanguageChange_en -0x7a9875b0b8efb1ad LanguageOptions_SpellCheckLanguageChange_en-AU -0x210830b65e90eedf LanguageOptions_SpellCheckLanguageChange_en-CA -0x9c5ecf7ee4cd7fe6 LanguageOptions_SpellCheckLanguageChange_en-GB -0xa1ca46cc1bacf01e LanguageOptions_SpellCheckLanguageChange_en-NZ -0xc2ef2ccd8a872da8 LanguageOptions_SpellCheckLanguageChange_en-US -0xfa49edbe6e1a8099 LanguageOptions_SpellCheckLanguageChange_en-ZA -0xb89148d2ec4d78eb LanguageOptions_SpellCheckLanguageChange_eo -0x7a8a9928c6951178 LanguageOptions_SpellCheckLanguageChange_es -0x335c54f4600c0b06 LanguageOptions_SpellCheckLanguageChange_es-419 -0x2be5d12ada80fe8c LanguageOptions_SpellCheckLanguageChange_et -0x85fb3829228fcc2e LanguageOptions_SpellCheckLanguageChange_eu -0x888c6e9da75bd6ea LanguageOptions_SpellCheckLanguageChange_fa -0x6a71fe1235b65ea8 LanguageOptions_SpellCheckLanguageChange_fi -0x786510108f6bd621 LanguageOptions_SpellCheckLanguageChange_fil -0xb65b87a46bc6848a LanguageOptions_SpellCheckLanguageChange_fo -0x350594ed486733ab LanguageOptions_SpellCheckLanguageChange_fr -0x92b548bfe8dc3ae9 LanguageOptions_SpellCheckLanguageChange_fr-CA -0x22d8ce8d402861df LanguageOptions_SpellCheckLanguageChange_fr-CH -0x04b12f0c336d715c LanguageOptions_SpellCheckLanguageChange_fr-FR -0xedba3ba5ccd84adc LanguageOptions_SpellCheckLanguageChange_fy -0xfc18bb1660a03b60 LanguageOptions_SpellCheckLanguageChange_ga -0x1b9c8352f74b0c82 LanguageOptions_SpellCheckLanguageChange_gd -0xfdfa4d8cd811f664 LanguageOptions_SpellCheckLanguageChange_gl -0xac52fce34c780009 LanguageOptions_SpellCheckLanguageChange_gn -0xd78744f6c3b943d5 LanguageOptions_SpellCheckLanguageChange_gu -0xd4bb24d5585722d5 LanguageOptions_SpellCheckLanguageChange_ha -0xa1df103387fe44eb LanguageOptions_SpellCheckLanguageChange_haw -0xe6a740028864e54c LanguageOptions_SpellCheckLanguageChange_he -0x4a5ac45c11294524 LanguageOptions_SpellCheckLanguageChange_hi -0x5634d2d630b62db7 LanguageOptions_SpellCheckLanguageChange_hr -0x0d9b2da08e908398 LanguageOptions_SpellCheckLanguageChange_hu -0x6235fe36d587a174 LanguageOptions_SpellCheckLanguageChange_hy -0x96a69530dcf9c952 LanguageOptions_SpellCheckLanguageChange_ia -0x33858a0f90601b99 LanguageOptions_SpellCheckLanguageChange_id -0x421fd3a986c9268a LanguageOptions_SpellCheckLanguageChange_is -0x6963156dd2e5a8da LanguageOptions_SpellCheckLanguageChange_it -0x0c579f6bc1d7eb3d LanguageOptions_SpellCheckLanguageChange_it-CH -0x9415bc67e35d695b LanguageOptions_SpellCheckLanguageChange_it-IT -0xc309312f7d87e667 LanguageOptions_SpellCheckLanguageChange_ja -0xa16e44ff1be39a3e LanguageOptions_SpellCheckLanguageChange_jw -0x69a6884a3d26b3da LanguageOptions_SpellCheckLanguageChange_ka -0xda7c858e99e65ef4 LanguageOptions_SpellCheckLanguageChange_kk -0x2ef0148c5104510b LanguageOptions_SpellCheckLanguageChange_km -0x0c285764bac9c412 LanguageOptions_SpellCheckLanguageChange_kn -0xdf1b960c7c2cc1e7 LanguageOptions_SpellCheckLanguageChange_ko -0x5d128aa7040d29c6 LanguageOptions_SpellCheckLanguageChange_ku -0x535257816775f9f5 LanguageOptions_SpellCheckLanguageChange_ky -0x9c4079a6ebd99d4f LanguageOptions_SpellCheckLanguageChange_la -0xbcdb116c72381903 LanguageOptions_SpellCheckLanguageChange_ln -0x188a55a79836e3ab LanguageOptions_SpellCheckLanguageChange_lo -0x35c70c9a4d851dc6 LanguageOptions_SpellCheckLanguageChange_lt -0x8566b76a82e7fdeb LanguageOptions_SpellCheckLanguageChange_lv -0xb21dc3c6409fb03b LanguageOptions_SpellCheckLanguageChange_mk -0xbc1d9b51b30e674e LanguageOptions_SpellCheckLanguageChange_ml -0xe184488215d31cff LanguageOptions_SpellCheckLanguageChange_mn -0xb4048acd46620f9d LanguageOptions_SpellCheckLanguageChange_mo -0x494852187a45238e LanguageOptions_SpellCheckLanguageChange_mr -0x3252be13f227791e LanguageOptions_SpellCheckLanguageChange_ms -0x47b98aa2c04db05a LanguageOptions_SpellCheckLanguageChange_mt -0xd1019f3988676333 LanguageOptions_SpellCheckLanguageChange_nb -0xc7d80d5be9fd265a LanguageOptions_SpellCheckLanguageChange_ne -0x0fe1fa4c9113cdca LanguageOptions_SpellCheckLanguageChange_nl -0xbf2dc22115880d3d LanguageOptions_SpellCheckLanguageChange_nn -0xcab46544f005c97a LanguageOptions_SpellCheckLanguageChange_no -0x031c51747e109ed0 LanguageOptions_SpellCheckLanguageChange_oc -0x18148cc2641e2e75 LanguageOptions_SpellCheckLanguageChange_om -0x5af0c86bd4fbc6d4 LanguageOptions_SpellCheckLanguageChange_or -0xe9142e813c57d901 LanguageOptions_SpellCheckLanguageChange_pa -0x56f8dea08fc60dd0 LanguageOptions_SpellCheckLanguageChange_pl -0xcc46a9b43892cd17 LanguageOptions_SpellCheckLanguageChange_ps -0xa8e521739e3a8111 LanguageOptions_SpellCheckLanguageChange_pt -0x0965fa6496b7bc86 LanguageOptions_SpellCheckLanguageChange_pt-BR -0xa245fca6322289f1 LanguageOptions_SpellCheckLanguageChange_pt-PT -0x0c0249f8a5ddd2fd LanguageOptions_SpellCheckLanguageChange_qu -0x1e4414f0c08e409b LanguageOptions_SpellCheckLanguageChange_rm -0x9de3adae56cd4645 LanguageOptions_SpellCheckLanguageChange_ro -0xdf75477e7e9105c9 LanguageOptions_SpellCheckLanguageChange_ru -0xa5227b45669bf1d9 LanguageOptions_SpellCheckLanguageChange_sd -0x99ac10d69235bc19 LanguageOptions_SpellCheckLanguageChange_sh -0xb65301fe78a5f948 LanguageOptions_SpellCheckLanguageChange_si -0x4043d3a9b8a0b7d3 LanguageOptions_SpellCheckLanguageChange_sk -0xd48fd58efca4a848 LanguageOptions_SpellCheckLanguageChange_sl -0x4811fa57db8aba7b LanguageOptions_SpellCheckLanguageChange_sn -0xb460c6a021ce30ce LanguageOptions_SpellCheckLanguageChange_so -0xcf8fbb2f35d437f9 LanguageOptions_SpellCheckLanguageChange_sq -0x4266aeea5a172fed LanguageOptions_SpellCheckLanguageChange_sr -0xb70d00fe5b60399f LanguageOptions_SpellCheckLanguageChange_st -0x4f307c5e96126e39 LanguageOptions_SpellCheckLanguageChange_su -0x793f0539702106b3 LanguageOptions_SpellCheckLanguageChange_sv -0xd0683f1a88f2dcd9 LanguageOptions_SpellCheckLanguageChange_sw -0x4adb832cdfa82e95 LanguageOptions_SpellCheckLanguageChange_ta -0xe5e6f8a2c34dbf3f LanguageOptions_SpellCheckLanguageChange_te -0xb56ca80c23e21e82 LanguageOptions_SpellCheckLanguageChange_tg -0xc31434dd30b37c79 LanguageOptions_SpellCheckLanguageChange_th -0xbf3ce64eb42276ce LanguageOptions_SpellCheckLanguageChange_ti -0x9a7852d3d5a451dd LanguageOptions_SpellCheckLanguageChange_tk -0x54a10166348130da LanguageOptions_SpellCheckLanguageChange_to -0xceb028c8d98b6f69 LanguageOptions_SpellCheckLanguageChange_tr -0x6110f46e5d1d5ce3 LanguageOptions_SpellCheckLanguageChange_tt -0x9ed4a1802694e371 LanguageOptions_SpellCheckLanguageChange_tw -0xf2aa74178fae8737 LanguageOptions_SpellCheckLanguageChange_ug -0xeba4b1bfb148fe5c LanguageOptions_SpellCheckLanguageChange_uk -0xdc2fbf10c4e3cc7e LanguageOptions_SpellCheckLanguageChange_ur -0x7de2dd2191f8f3b5 LanguageOptions_SpellCheckLanguageChange_uz -0x20f26902bf2b0f7e LanguageOptions_SpellCheckLanguageChange_vi -0x69a672e997291046 LanguageOptions_SpellCheckLanguageChange_xh -0xd95a13401430464b LanguageOptions_SpellCheckLanguageChange_yi -0xdfa41d1e586edede LanguageOptions_SpellCheckLanguageChange_yo -0xe464bee2f7b47f05 LanguageOptions_SpellCheckLanguageChange_zh -0x02feeb3c3fbb0e6d LanguageOptions_SpellCheckLanguageChange_zh-CN -0x388861c5b05fcfd7 LanguageOptions_SpellCheckLanguageChange_zh-TW -0xa7832f7951587154 LanguageOptions_SpellCheckLanguageChange_zu -0x28f95708216c5f3f LanguageOptions_UiLanguageChange_af -0x64bf99d3a3ae3c09 LanguageOptions_UiLanguageChange_am -0x37e45415ff188c83 LanguageOptions_UiLanguageChange_ar -0xc16e98ac284f7a2c LanguageOptions_UiLanguageChange_az -0x86afaa8af655ec3a LanguageOptions_UiLanguageChange_be -0xd3444f0a33415c12 LanguageOptions_UiLanguageChange_bg -0x2a970136519d8e05 LanguageOptions_UiLanguageChange_bh -0x373b5f9df58f10b1 LanguageOptions_UiLanguageChange_bn -0xaa60c4c46bab2840 LanguageOptions_UiLanguageChange_br -0x576186b20f58a62e LanguageOptions_UiLanguageChange_bs -0x2ee7812d1d628187 LanguageOptions_UiLanguageChange_ca -0x0d39e71d36e3f98c LanguageOptions_UiLanguageChange_co -0x009ad7b74dd6eead LanguageOptions_UiLanguageChange_cs -0x9fc56d8b05719e95 LanguageOptions_UiLanguageChange_cy -0x71c22450bc774ac6 LanguageOptions_UiLanguageChange_da -0xdad8029db0738ca3 LanguageOptions_UiLanguageChange_de -0xe5f02b9f07d5c321 LanguageOptions_UiLanguageChange_de-AT -0x937082a0f96b339b LanguageOptions_UiLanguageChange_de-CH -0x60067bef740b0cee LanguageOptions_UiLanguageChange_de-DE -0x0598fe9cffcf7342 LanguageOptions_UiLanguageChange_el -0x20682c0970bf6c39 LanguageOptions_UiLanguageChange_en -0xb6b90d60aa7397dc LanguageOptions_UiLanguageChange_en-AU -0x20ffa805c7cb2d11 LanguageOptions_UiLanguageChange_en-CA -0x0abeddf23bb637dd LanguageOptions_UiLanguageChange_en-GB -0x8e377316a588ae05 LanguageOptions_UiLanguageChange_en-NZ -0x5e4314a4bd4d6ec1 LanguageOptions_UiLanguageChange_en-US -0xacb33ac957ca869b LanguageOptions_UiLanguageChange_en-ZA -0xabb1750f364f3fdf LanguageOptions_UiLanguageChange_eo -0x42ef1c985cf8dac3 LanguageOptions_UiLanguageChange_es -0x207a8d00a40289d5 LanguageOptions_UiLanguageChange_es-419 -0x3396cd1cc34fcd6b LanguageOptions_UiLanguageChange_et -0x1bc0603299c4c900 LanguageOptions_UiLanguageChange_eu -0x4f3e8052d630b9ef LanguageOptions_UiLanguageChange_fa -0xef30a035ea67916e LanguageOptions_UiLanguageChange_fi -0x6b0bf8c255f455c4 LanguageOptions_UiLanguageChange_fil -0xa43a6a0b854ffefd LanguageOptions_UiLanguageChange_fo -0x3636182675a031c8 LanguageOptions_UiLanguageChange_fr -0x6f0bffdb3032caed LanguageOptions_UiLanguageChange_fr-CA -0xd912f13c73979882 LanguageOptions_UiLanguageChange_fr-CH -0xe924dfbfd17a3242 LanguageOptions_UiLanguageChange_fr-FR -0x061bf0d19eeef81e LanguageOptions_UiLanguageChange_fy -0x8251febc4083f54f LanguageOptions_UiLanguageChange_ga -0xccd31a77ee4366bf LanguageOptions_UiLanguageChange_gd -0x1f67f851b23ced0f LanguageOptions_UiLanguageChange_gl -0xcc9859375f855961 LanguageOptions_UiLanguageChange_gn -0xd56c64f864957d91 LanguageOptions_UiLanguageChange_gu -0xd08b36368944e379 LanguageOptions_UiLanguageChange_ha -0xb3a6464f5fe71073 LanguageOptions_UiLanguageChange_haw -0xed8f4616b34e2185 LanguageOptions_UiLanguageChange_he -0x88ca2030cc3a49d9 LanguageOptions_UiLanguageChange_hi -0xb8bd533bdc898a53 LanguageOptions_UiLanguageChange_hr -0x746a1a0e63dd3f6d LanguageOptions_UiLanguageChange_hu -0x48906875b3fd6c95 LanguageOptions_UiLanguageChange_hy -0x1366ee57f2aebfad LanguageOptions_UiLanguageChange_ia -0xff1d8f2925f8463c LanguageOptions_UiLanguageChange_id -0x915c19c85aed6a03 LanguageOptions_UiLanguageChange_is -0xd1abd6db369ab7ef LanguageOptions_UiLanguageChange_it -0xe0c3a22acdd867b9 LanguageOptions_UiLanguageChange_it-CH -0x3090b03a3e46582b LanguageOptions_UiLanguageChange_it-IT -0x60f4dd00cc06d874 LanguageOptions_UiLanguageChange_ja -0x86c8f166345df95e LanguageOptions_UiLanguageChange_jw -0x670ea55ac2c8b062 LanguageOptions_UiLanguageChange_ka -0x5b57cde2d36ca8cd LanguageOptions_UiLanguageChange_kk -0xbeb6576493ae6d05 LanguageOptions_UiLanguageChange_km -0xce996c9699b3168c LanguageOptions_UiLanguageChange_kn -0xbd07adaea57b26f5 LanguageOptions_UiLanguageChange_ko -0x4f0a66f954fa580e LanguageOptions_UiLanguageChange_ku -0xb87acb54b22131c8 LanguageOptions_UiLanguageChange_ky -0x8263585e1943372f LanguageOptions_UiLanguageChange_la -0x6642ed654dd4aaa4 LanguageOptions_UiLanguageChange_ln -0x273efc98e31a51cd LanguageOptions_UiLanguageChange_lo -0xd25cfe9ca78a31d7 LanguageOptions_UiLanguageChange_lt -0x794081adfcb1744c LanguageOptions_UiLanguageChange_lv -0xf6ea1c5fc4dcafb8 LanguageOptions_UiLanguageChange_mk -0x2258884fcb94b3a3 LanguageOptions_UiLanguageChange_ml -0x00bdaddaf47561d1 LanguageOptions_UiLanguageChange_mn -0x3b0c2fa0b7b027db LanguageOptions_UiLanguageChange_mo -0xfec577eb29f4b768 LanguageOptions_UiLanguageChange_mr -0x2d1ef24818ca5e4f LanguageOptions_UiLanguageChange_ms -0x06ddcd11da46bb50 LanguageOptions_UiLanguageChange_mt -0x5683a40b0b8caa20 LanguageOptions_UiLanguageChange_nb -0x2ba4d49749d043fa LanguageOptions_UiLanguageChange_ne -0x584a118482ee3a32 LanguageOptions_UiLanguageChange_nl -0x7ca178a2a1311c1e LanguageOptions_UiLanguageChange_nn -0xcef3082674f7bfc0 LanguageOptions_UiLanguageChange_no -0x4ef5f77644dbfc68 LanguageOptions_UiLanguageChange_oc -0x648ba70088175e47 LanguageOptions_UiLanguageChange_om -0xb76df1c750016022 LanguageOptions_UiLanguageChange_or -0x4d3566c9fb39fde3 LanguageOptions_UiLanguageChange_pa -0xb2e1327766d055ad LanguageOptions_UiLanguageChange_pl -0x9e562f625cfbb008 LanguageOptions_UiLanguageChange_ps -0xd970808d9c9448d1 LanguageOptions_UiLanguageChange_pt -0xf7b46f1138de06a9 LanguageOptions_UiLanguageChange_pt-BR -0x086ef991869ac783 LanguageOptions_UiLanguageChange_pt-PT -0x69a974172e5e9f73 LanguageOptions_UiLanguageChange_qu -0xdd1935e2579c1284 LanguageOptions_UiLanguageChange_rm -0xe5738c8e946ba1d0 LanguageOptions_UiLanguageChange_ro -0x125913fb14d47526 LanguageOptions_UiLanguageChange_ru -0x0f156a0f15f74bb8 LanguageOptions_UiLanguageChange_sd -0x9240b6a14cd35919 LanguageOptions_UiLanguageChange_sh -0x6763083d96429a61 LanguageOptions_UiLanguageChange_si -0x587831f4b9220eca LanguageOptions_UiLanguageChange_sk -0x15a09e54aa1e9f4a LanguageOptions_UiLanguageChange_sl -0x6a5ac197de560ec4 LanguageOptions_UiLanguageChange_sn -0x93472fab0fe3f061 LanguageOptions_UiLanguageChange_so -0x1bbc961a4eb4fb07 LanguageOptions_UiLanguageChange_sq -0xb1392f5ad48fe1a7 LanguageOptions_UiLanguageChange_sr -0x04e5f8326179901e LanguageOptions_UiLanguageChange_st -0x5fef5745a2763b80 LanguageOptions_UiLanguageChange_su -0x8993a9d1df3ccc59 LanguageOptions_UiLanguageChange_sv -0xaedab7909dff790b LanguageOptions_UiLanguageChange_sw -0x6c1f62315896ca95 LanguageOptions_UiLanguageChange_ta -0x762084c13a9a9b62 LanguageOptions_UiLanguageChange_te -0x0060f27c68e28c87 LanguageOptions_UiLanguageChange_tg -0x80b5fea53c9d6164 LanguageOptions_UiLanguageChange_th -0xeeb3bd273099c7d3 LanguageOptions_UiLanguageChange_ti -0xfa67fec49e23c547 LanguageOptions_UiLanguageChange_tk -0x052e8ac2c052128c LanguageOptions_UiLanguageChange_to -0xaa97a95d0c9e20b5 LanguageOptions_UiLanguageChange_tr -0x8e949fbebe2126cf LanguageOptions_UiLanguageChange_tt -0xe0fc96469f2d822f LanguageOptions_UiLanguageChange_tw -0xa4a84a5651503494 LanguageOptions_UiLanguageChange_ug -0x0b0bcb0d93b5a367 LanguageOptions_UiLanguageChange_uk -0x2be9356bc4812c15 LanguageOptions_UiLanguageChange_ur -0xe0e1ece201b6889f LanguageOptions_UiLanguageChange_uz -0x28a1a4b9dc5a83f1 LanguageOptions_UiLanguageChange_vi -0xf16ab2f1f9cfeaab LanguageOptions_UiLanguageChange_xh -0x26561f9577c4d728 LanguageOptions_UiLanguageChange_yi -0x0d5d98b098d7429b LanguageOptions_UiLanguageChange_yo -0xa9b1ee532cc5580b LanguageOptions_UiLanguageChange_zh -0xbee911865b93d504 LanguageOptions_UiLanguageChange_zh-CN -0x03a61bc8bd6c791b LanguageOptions_UiLanguageChange_zh-TW -0xd93d87f83683d666 LanguageOptions_UiLanguageChange_zu -0x7f28f030259fc65e Launcher_ClickOnApp -0x2df1e564b9b0952f Launcher_ClickOnApplistButton -0x384a6609143bbcae LoadURL -0xe009e92f3909009c LoadURLFromKeyword -0x5c9174370534d67c LocalDiscoveryNotificationsDisabled_Settings_Disable -0xf4495a1060f7a361 LocalDiscoveryNotificationsDisabled_Settings_Enable -0x795fc04747be6afa LockScreen -0x733f4fb7447b7323 Login.CreateAccount -0xb9cc6258dfd41f37 Login_DemoUserLoginSuccess -0xfb40450c5de92998 Login_Failure -0x31374d163aec5a5e Login_GuestLoginSuccess -0x47421e3d3406b4e1 Login_OffTheRecordLoginSuccess -0xc23fa875d14a7ddb Login_Success -0xb8f04c6d0fe44916 ManagedMode_ClosePassphraseDialog -0x2e52d9ec770aefb3 ManagedMode_LocallyManagedUserCreated -0x41b5faabb7c9327c ManagedMode_MainFrameNavigation -0xa29f3f7e4bb25494 ManagedMode_NewManagedUserWindow -0x29c1bda4ed1db0e0 ManagedMode_OpenPassphraseDialog -0x238d1563c0fa1ce2 ManagedMode_OpenSettings -0x0b747e86c82229bc ManagedMode_StartupEnableManagedSwitch -0x9f5c6206cd6609b6 ManagedMode_StartupManagedSwitch -0x91519377450fa09e ManagedMode_StartupNoManagedSwitch -0xe6e506b6ca3fd10f ManagedUsers_UploadItem_Queued -0xc5b20d272f57cec5 ManagedUsers_UploadItem_Syncing -0x336d5775206b39a0 MaxButton_Clk_ExitFS -0x30e3f55c61ca1f4d MaxButton_Clk_Maximize -0x49226fae388cd5f0 MaxButton_Clk_Restore -0x9c4e110de24ddbfb MaxButton_MaxLeft -0xe5e2c8bb60a6f019 MaxButton_MaxRight -0x0ed29608c3edb9ee MaxButton_Maximize -0xfa675ab4e35a8dfb MaxButton_Minimize -0x9ddc8fc34f81c18c MaxButton_Restore -0xf5f4e08ff4ffc48e MaxButton_ShowBubble -0x84ba0ed3cbdf3956 MediaContextMenu_Controls -0x7b82a108ac28a1ac MediaContextMenu_Loop -0x458edb8f0451b9f5 MediaContextMenu_Mute -0xcbbec2e6e4bc9bc7 MediaContextMenu_Pause -0x8b5912c6a1d5add6 MediaContextMenu_Play -0xc2d04b65a8ff1f89 MediaContextMenu_Unmute -0xb86e8cd6abeba9db Menu_Take_Screenshot -0x6b52c76dc897d0ac MinButton_Clk -0x7b262d2127dd8256 Minimize_UsingKey -0xfa4408343dc15b72 MixedScript_LoadAnyway_Bubble -0x3f09ed78b409184e MobileActionBarShown -0x3dce569ec6ea9080 MobileBeamCallbackSuccess -0x90e5a607c36178ce MobileBeamInvalidAppState -0xbc28c6539da4d688 MobileBreakpadUploadAttempt -0x4622f7e73642ad8a MobileBreakpadUploadFailure -0x29f2927c01084453 MobileBreakpadUploadSuccess -0xd51394e7d79ed777 MobileContextMenuCopyImageLinkAddress -0xa7b47844dbca122c MobileContextMenuCopyLinkAddress -0x5ff99655278e08bf MobileContextMenuCopyLinkText -0x329e7c190c46883a MobileContextMenuDownloadImage -0x24fcd970b3be9539 MobileContextMenuDownloadLink -0x19f18ed23304f451 MobileContextMenuDownloadVideo -0x6607f1a62c7086b7 MobileContextMenuImage -0x5ac057123a1aa102 MobileContextMenuLink -0xaea6ec9898f5dca7 MobileContextMenuOpenImageInNewTab -0xf20535df9a8b8956 MobileContextMenuOpenLink -0x9e77fb06de21d0b4 MobileContextMenuOpenLinkInIncognito -0xa024c8dce2320bb1 MobileContextMenuOpenLinkInNewTab -0xde20f676a6805404 MobileContextMenuSaveImage -0xf123d71a7f1df18a MobileContextMenuSearchByImage -0x470fb8fde85c094b MobileContextMenuShareLink -0xb177bc454b6a2105 MobileContextMenuText -0x68b96cc2620ba615 MobileContextMenuVideo -0xac284cf4338f8a66 MobileContextMenuViewImage -0xc6a86667105ee9e2 MobileFirstEditInOmnibox -0x145c1748b4db8fb5 MobileFocusedFakeboxOnNtp -0x92ade4e05606fe2d MobileFocusedOmniboxNotOnNtp -0x5b1e74ed79deac48 MobileFocusedOmniboxOnNtp -0xaa0f56a837e6fc61 MobileFreAttemptSignIn -0xe18a359c1fcb3fbb MobileFreSignInSuccessful -0x1d68dcd4ec7fdadc MobileFreSkipSignIn -0xd593c486af2f742f MobileMenuAddToBookmarks -0x952e55d25fd7f645 MobileMenuAllBookmarks -0x012de2560a8ce076 MobileMenuBack -0x8e57c931b602766a MobileMenuCloseAllTabs -0xa8326b05fd6bc10c MobileMenuCloseTab -0x4852b77757f1128a MobileMenuFeedback -0x70d79227bd988ebd MobileMenuFindInPage -0x6a191ad02dfcfde5 MobileMenuForward -0x32de876b3eb8f2fb MobileMenuFullscreen -0xa880dc9ccdc2ed51 MobileMenuNewIncognitoTab -0x8d1aefe7246707fa MobileMenuNewTab -0x0581354d10947136 MobileMenuOpenTabs -0x6771b11116f29809 MobileMenuQuit -0xdeddac455059a536 MobileMenuReload -0xbd48a04b98a0806d MobileMenuSettings -0x4a8e89dbe7dc9821 MobileMenuShare -0xc9389060e824d3ec MobileMenuShow -0x23f55337b40c7686 MobileNTPBookmark -0x2927c5a40258df17 MobileNTPForeignSession -0x5a4f535062ffe001 MobileNTPMostVisited -0x89a6184c5dabd612 MobileNTPRecentlyClosed -0xc172db5c29ae2771 MobileNTPSwitchToBookmarks -0xd4df8c01afe71935 MobileNTPSwitchToIncognito -0x46c727e82f8494bc MobileNTPSwitchToMostVisited -0x2f3ff7588b15e4b5 MobileNTPSwitchToOpenTabs -0xd6643e725ce30ed4 MobileNewTabOpened -0x5e3971df3da04b41 MobileOmniboxRefineSuggestion -0x90071ab23ccdcd96 MobileOmniboxSearch -0x23037bbea96a8ceb MobileOmniboxVoiceSearch -0xb1249f32bf64d5e8 MobilePageLoaded -0x029217f521222d21 MobilePageLoadedDesktopUserAgent -0x7bdf9c4a8dab56fb MobilePageLoadedWithKeyboard -0xe9e4921fd2dc5ca6 MobileReceivedExternalIntent -0xd38e217ec665e879 MobileRendererCrashed -0x09618d294069e60c MobileShortcutAllBookmarks -0x2ad4806d40f823b2 MobileShortcutFindInPage -0xc6e9ebacfe2e732e MobileShortcutNewIncognitoTab -0x54aa16ebe7a27823 MobileShortcutNewTab -0x5b326627b3bfa8f2 MobileSideSwipeFinished -0xd96fefb036806b54 MobileStackViewCloseTab -0x0a340661b1591ab5 MobileStackViewSwipeCloseTab -0xe0c5fc409e7d2a9e MobileTabClobbered -0x27caa49d16b71362 MobileTabClosed -0x371b72b6cd5313f4 MobileTabStripCloseTab -0xbb2496f58a543215 MobileTabStripNewTab -0x61bd701a880845ea MobileTabSwitched -0xeddccaa7cc01c9c4 MobileToolbarBack -0x0082decef81a99e8 MobileToolbarForward -0xc7cd1610c9a15c4d MobileToolbarNewTab -0xf7a930aae6dd681f MobileToolbarReload -0x3cf24b6fee3f97bf MobileToolbarShowMenu -0x3deff4b1d1a6c795 MobileToolbarShowStackView -0xa358306810cb78c4 MobileToolbarStackViewNewTab -0x001b06917446ac95 MobileToolbarToggleBookmark -0xfe5d7732799048fd MobileUsingMenuByHwButtonDragging -0xb25fb65d8d767718 MobileUsingMenuByHwButtonTap -0xaf60773aea14a7b5 MobileUsingMenuBySwButtonDragging -0x15fd6bb5bff45129 MobileUsingMenuBySwButtonTap -0x409a073e57298782 MostVisited0 -0xaf4909be766297ab MostVisited1 -0x6028c57529e1608f MostVisited2 -0x3a94312581f33dde MostVisited3 -0xd8a6b50e524602b1 MostVisited4 -0xa61f8bda87c26817 MostVisited5 -0xaf2d6d86c5115610 MostVisited6 -0x576b4b3570828783 MostVisited7 -0x7e2c4d68af709827 MostVisited8 -0x1b40c6b1b5dd7106 MostVisited9 -0x245e4aa9fe5a8a3c MostVisitedReordered -0x9c6a4ef293d946ca MostVisited_BlacklistCleared -0x110c33db0e4c6ebf MostVisited_Clicked -0x018c0ec301cb02ae MostVisited_UrlBlacklisted -0x4cbb82140919fe65 MostVisited_UrlPinned -0xa90e38146e0a4399 MostVisited_UrlRemoved -0xe39ca5075f8cb467 MostVisited_UrlUnpinned -0x4a0afb1ce16f661e Mouse_Down -0xf812385dfcc1a683 MoveBackward -0xd5980f1362f718dd MoveBackwardAndModifySelection -0x8c95fa949833ae3c MoveDown -0x601512931eeb8aa3 MoveDownAndModifySelection -0x122077e11a3cc3a5 MoveForward -0x645ad0c708fc5558 MoveForwardAndModifySelection -0xe8a98c6fabdea857 MoveLeft -0xe7929afc55d64080 MoveLeftAndModifySelection -0xffee5f8627577124 MovePageDown -0x7c9e3f063ca16598 MovePageDownAndModifySelection -0x3f2197bd2a87175c MovePageUp -0x2b0ce1185e0ee65d MovePageUpAndModifySelection -0x78af9b7fcdf1574f MoveRight -0x90177a63e4ab5878 MoveRightAndModifySelection -0x6c8c1cceb6be3172 MoveTabNext -0x56f311997d5f98ed MoveTabPrevious -0xb57645f74f42e96c MoveToBeginningOfDocument -0x3379b28a420f0c0e MoveToBeginningOfLine -0xe9ba772da7cca699 MoveToBeginningOfLineAndModifySelection -0x02bb149b88f68e59 MoveToBeginningOfParagraph -0xfa68df5359bb8fdc MoveToBeginningOfParagraphAndModifySelection -0x0d05f6fc5732a16d MoveToEndOfDocument -0xd6b0cd02740d6118 MoveToEndOfLine -0x660cce052c15cd1c MoveToEndOfLineAndModifySelection -0x925cca836b27299f MoveToEndOfParagraph -0xafbef52070141639 MoveToEndOfParagraphAndModifySelection -0xa56a3ff692c679e3 MoveUp -0x5011c876151c1812 MoveUpAndModifySelection -0xccdc0bb665a92238 MoveWordBackward -0x9372bb835cd720fb MoveWordForward -0x002e07cb5223cd33 MoveWordLeft -0xd55f7c4e520b18a4 MoveWordRight -0xfc8e40d96ab33f1b NTPPromoClosed -0x0cdd043c5d63d234 NTPPromoShown -0xdcf1af37de1d8dd0 NativeUI_Applications -0x08b0a573ad336d14 NavEntryCommitted -0xcace6bb1e166082f NavEntryCommitted.SRP -0x17dee5b17b6cc8df Net.URLRequest_StartJob_InvalidReferrer -0x3c6e0d9310ba3a20 NewIncognitoWindow -0xeddaa38a10bf8374 NewProfileWindowByIndex -0x290eb683f96572f1 NewTab -0x95c990454684cb1d NewTabPage_ReopenTab -0xab4d417c5ca44904 NewTab_Button -0xbdc9ec125e7a3ade NewWindow -0x56e2be5803efccc1 Notifications.Mute -0xa86d43452b05bf72 Notifications.ShowMessageCenter -0x9a102e132f96503f Notifications.ShowSettings -0xd2175e238a75b56a Notifications.Unmute -0xbace688dcdf180fe Omnibox.ServerSuggestDelete.Failure -0x65a8c968a93ddb00 Omnibox.ServerSuggestDelete.Success -0xa72c673a1f44d11f OmniboxDestinationURLIsSearchOnDSP -0x6048dbd4f2f2ca50 OmniboxDestinationURLMatchesDefaultSearchProvider -0x268376698078c71b OmniboxInputInProgress -0xe7ff15c3f1043a26 Omnibox_DragString -0x1a18c36c737ec22b Omnibox_DragURL -0x56c5e8af805a2fe8 OpenAddBluetoothDeviceDialog -0xa00fbd8da8229c83 OpenAllBookmarks -0x7242962875070018 OpenAllBookmarksIncognitoWindow -0x5e3bd4e3535ecc38 OpenAllBookmarksNewWindow -0xf6bce188756ecaf8 OpenChangeProfilePictureDialog -0x4b858349a1b8bb15 OpenFile -0xedaa8487de2a33c6 OpenFileManager -0xb3c3e8d99702cf70 OpenFileSystemPersistent -0x1e6740b4b7fda686 OpenFileSystemTemporary -0x4928347f9423c013 OpenInternetOptionsDialog -0x83af6accb98b9954 OpenLanguageOptionsDialog -0xe7147544a7db079d OpenSystemOptionsDialog -0xe4f08e5732cebbd3 OpenTabpose -0x7d3309f039cebdb1 Options_AppLanguage -0xaabae975f4a0bb66 Options_AskForSaveLocation_Disable -0x85464d6e64bbb505 Options_AskForSaveLocation_Enable -0x158f62ce172e002b Options_AutoSpellCorrection_Disable -0xa19b903d23620d91 Options_AutoSpellCorrection_Enable -0xc77b497271ed97a4 Options_AutofillAuxiliaryProfiles_Disable -0xb23c25ac48557c58 Options_AutofillAuxiliaryProfiles_Enable -0x212dbab3096e37b2 Options_Autologin_Disable -0x73bafa15344565f3 Options_Autologin_Enable -0xbf4441a54e9b8e50 Options_BackgroundMode_Disable -0xc481e10b3ba27f8c Options_BackgroundMode_Enable -0xc65558de1b0b2371 Options_BlockAllPopups_Disable -0x6886cd43bb132ac1 Options_BlockAllPopups_Enable -0xa64d82b58336f482 Options_ChangeDefaultZoomLevel -0x76cf57336cea96ff Options_ChangeFixedFont -0xa198434035fd95dc Options_ChangeFontEncoding -0xac4f01f24c2cad48 Options_ChangeProxies -0x279dd81ae1252131 Options_ChangeSansSerifFont -0xbbecdfd270d46408 Options_ChangeSerifFont -0x45f2145964c18350 Options_ChangeStandardFont -0x98ccc71c44973ca0 Options_CheckCertRevocation_Disable -0xc6599b9ffadec866 Options_CheckCertRevocation_Enable -0x67aa79d60894f3d7 Options_ClearData -0x4f27f3cc73dfa3ce Options_CloudPrintDevicesPage -0x2d5b58850046ac0a Options_ContentSettings -0xe2fd858f8395432f Options_CustomFrame_Disable -0x531823c36ca21da2 Options_CustomFrame_Enable -0x33e7b018e003c5b1 Options_DefaultCookieSettingChanged -0x3864ed1197ddceb8 Options_DefaultGeolocationSettingChanged -0x3f92cd6678d2f595 Options_DefaultHandlersSettingChanged -0x5dfe307474e6b526 Options_DefaultImagesSettingChanged -0x8ac0134529158dae Options_DefaultJavaScriptSettingChanged -0x3a8bb054f5841f1a Options_DefaultMIDISysExSettingChanged -0x04303682ca0b2a8d Options_DefaultMediaStreamMicSettingChanged -0x6a97ed68e3457d0e Options_DefaultMediaStreamSettingChanged -0xfca02a749fa0f811 Options_DefaultMouseLockSettingChanged -0xef2e38e7df25f488 Options_DefaultMultipleAutomaticDLSettingChange -0xbc49f9107e7c7c7c Options_DefaultNotificationsSettingChanged -0x6b91203aa4b5fb3c Options_DefaultPluginsSettingChanged -0x8b20daa9a0c1a0a6 Options_DefaultPopupsSettingChanged -0x2d3b125fe15e828e Options_DictionaryLanguage -0xc895ecf32a4970be Options_DisableCloudPrintProxy -0xa381adec8b0e61ee Options_DisableGData_Disable -0x31bc6949351f46a1 Options_DisableGData_Enable -0x3c91497bc48f7456 Options_DnsPrefetchCheckbox_Disable -0xb1c929ead405f1a9 Options_DnsPrefetchCheckbox_Enable -0x5e1d34b2eb43d66f Options_DoNotTrackCheckbox_Disable -0x127ee5905bb2d0cd Options_DoNotTrackCheckbox_Enable -0x24f63c90f4b05e70 Options_EnableCloudPrintProxy -0x7224f61ec49ec7ce Options_FormAutofill_Disable -0xe88933ca2c819b4e Options_FormAutofill_Enable -0xb186750fe61b8254 Options_GearsSettings -0x9014fbda0ce53308 Options_GoogleGeolocationAccessCheckbox_Disable -0x4954403fd4c98f51 Options_GoogleGeolocationAccessCheckbox_Enable -0x8e87d1b7048f4b2f Options_GtkThemeSet -0xa8b432017c641f12 Options_Homepage_HideHomeButton -0xcf50dce927f3c8a8 Options_Homepage_HomeButton_Disable -0x9815eaa9d1b11198 Options_Homepage_HomeButton_Enable -0xb2391b14884e357a Options_Homepage_IsNewTabPage_Disable -0x2e719fd1ab37b148 Options_Homepage_IsNewTabPage_Enable -0xc8faba7110ff04c3 Options_Homepage_ShowHomeButton -0x26cdb65b6a92b56a Options_Homepage_UseNewTab -0xca6dd0b172e6df26 Options_Homepage_UseURL -0x5238873285e397d8 Options_HotwordCheckbox_Disable -0xce7307701f1a21dd Options_HotwordCheckbox_Enable -0x3462530e3c04ab92 Options_ImagesCheckbox_Disable -0x3b55d5acba24ebad Options_ImagesCheckbox_Enable -0xe82fe68817c3bf54 Options_InstantEnabled_Disable -0x6efe012fa2603811 Options_InstantEnabled_Enable -0xd7bc54bcc7d96d7b Options_InstantExtendedEnabled_Disable -0x9eb89c74eb206694 Options_InstantExtendedEnabled_Enable -0x9e2677a81e8d73a3 Options_Internet_DataRoaming_Disable -0xce32dc47692c5927 Options_Internet_DataRoaming_Enable -0x386291531b93301b Options_JavaCheckbox_Disable -0xe1d9dbcef8116c71 Options_JavaCheckbox_Enable -0x704c162610c6ffd5 Options_LinkDoctorCheckbox_Disable -0x64ea4cda15571db8 Options_LinkDoctorCheckbox_Enable -0xc8073584c5521315 Options_ManageCloudPrinters -0xd97025bbf470c3ba Options_ManageSSLCertificates -0xfeb23e6946b41cdc Options_ManageSearchEngines -0x84502179f3e2ae8c Options_ManagerCerts -0x540bea8eaba24835 Options_MetricsReportingCheckbox_Disable -0x4aa2c70a745dbb49 Options_MetricsReportingCheckbox_Enable -0x224b0bf60dccdeda Options_MousePrimaryRight_Disable -0xb23cd3cde814d929 Options_MousePrimaryRight_Enable -0x820f29cc9c44d0d5 Options_PasswordGenerationCheckbox_Disable -0x4df19d1fb4741c2a Options_PasswordGenerationCheckbox_Enable -0xc5fbe9d9b3a165dd Options_PasswordManager_Disable -0x59b4f208d9d9f648 Options_PasswordManager_Enable -0x6149925370ef4f47 Options_PluginsCheckbox_Disable -0x38a52a23bebcb35d Options_PluginsCheckbox_Enable -0x4c8f0d80d0819583 Options_ResetAutoOpenFiles -0x0e3ea2998edfc23b Options_ResetToDefaults -0xdad9014dcb04a1be Options_SSL2_Disable -0xdacc44975593ad02 Options_SSL2_Enable -0x88e4d09541842432 Options_SSL3_Disable -0x6b2fbab68d97bb5b Options_SSL3_Enable -0x08e75d386343cc27 Options_SafeBrowsingCheckbox_Disable -0xc951b246a33514ac Options_SafeBrowsingCheckbox_Enable -0x96ebcd98112d0930 Options_SafeBrowsingDownloadFeedbackCheckbox_Disable -0xab0f183ebf8995bb Options_SafeBrowsingDownloadFeedbackCheckbox_Enable -0x7653dc09eac4e2bf Options_SearchEngineChanged -0x47fd936f55f6abd4 Options_SensitivitySlider_Changed -0xb6e98e1635e14c7d Options_SetAsDefaultBrowser -0x6268ba17ac147927 Options_SetDownloadDirectory -0xcbfeef35b3ad832e Options_ShowAutoFillSettings -0xeaa21f7cf4791a0f Options_ShowBookmarksBar_Disable -0x0e3c8e82d47db7c6 Options_ShowBookmarksBar_Enable -0x626c01f2ae5a9ba2 Options_ShowCookies -0x9b00328b8c542526 Options_ShowPasswordManager -0x1d4a5f924ea24d2c Options_ShowPasswordsExceptions -0xc7fbc422d732eac5 Options_ShowProxySettings -0xc9362f32313889f1 Options_SpeedFactorSlider_Changed -0xc8fa104e4dd724e3 Options_SpellCheck_Disable -0x7470044370eb75f8 Options_SpellCheck_Enable -0xf9f1e5efda6f9978 Options_Startup_Custom -0xf8e60cd9af4e6187 Options_Startup_Homepage -0x1747b98bb0705d52 Options_Startup_LastSession -0x635cadbdc678371f Options_Startup_NewTab -0x24301fc721f3f091 Options_TLS1_Disable -0x1c669fc919a6eccb Options_TLS1_Enable -0x0e213ca8fa03d268 Options_TabsToLinks_Disable -0x60adcbc1d31d59a2 Options_TabsToLinks_Enable -0x01c2684695fc839e Options_TapToClickCheckbox_Disable -0x6f37e83ce98b3082 Options_TapToClickCheckbox_Enable -0x73defd4825af2700 Options_ThemesGallery -0x60d52658d42b1593 Options_ThemesReset -0x5101b63f43ebef59 Options_TouchpadNaturalScroll_Disable -0xe1b1c799201cdfd3 Options_TouchpadNaturalScroll_Enable -0x4a469294c73f23e4 Options_TouchpadTapToClick_Disable -0x61a29472d343cf72 Options_TouchpadTapToClick_Enable -0xa35806253d8d8b30 Options_Translate_Disable -0x280bb55487be6eb4 Options_Translate_Enable -0x5ebf6f9ecb47b4ad Options_UseSpellingServiceCheckbox_Disable -0x78f845e65f47f3f6 Options_UseSpellingServiceCheckbox_Enable -0x6f40a6712a19568a Options_UseSuggestCheckbox_Disable -0x9abd34cb9a857b9e Options_UseSuggestCheckbox_Enable -0x24604cce8816243c Options_VertEdgeScrollCheckbox_Disable -0x8d45d4c781319d53 Options_VertEdgeScrollCheckbox_Enable -0xe7ab82dee188f7a0 OriginChipPress -0x40a2640625760310 OutdatedPluginInfobar.AllowThisTime -0xa0361f9250c19197 OutdatedPluginInfobar.Closed -0xb4be73d2951aab5b OutdatedPluginInfobar.Dismissed -0x883c4259bb3beddd OutdatedPluginInfobar.LearnMore -0xaf62158873b29888 OutdatedPluginInfobar.Shown -0x3691471b03ca8103 OutdatedPluginInfobar.Shown.Java -0x25e1fc613aa70de4 OutdatedPluginInfobar.Shown.QuickTime -0x703e5cc7ad485d8f OutdatedPluginInfobar.Shown.Reader -0x5c977c210e40986b OutdatedPluginInfobar.Shown.RealPlayer -0xcc2c490fe5fc55ef OutdatedPluginInfobar.Shown.Shockwave -0x0ef39278378fe05d OutdatedPluginInfobar.Shown.Silverlight -0x7e7073691a152241 OutdatedPluginInfobar.Update -0x26da45ced13360f3 OutdatedUpgradeBubble.Later -0xe55f92fea3aac9d0 OutdatedUpgradeBubble.Reinstall -0x9a1b867a0b9532ca OutdatedUpgradeBubble.Show -0x016839db155e0468 Outdent -0x69fae31849862d21 OverrideEncoding -0xdcb4676e49e95259 PDF.FitToHeightButton -0xac15a659a088ccc5 PDF.FitToPageButton -0x5f58a2db6428c1a0 PDF.FitToWidthButton -0xc3c876c4e5846f66 PDF.LoadFailure -0x9c67afdea49aa8c1 PDF.LoadSuccess -0xa0853d13a6382cb2 PDF.PreviewDocumentLoadFailure -0x715bc13f0a521ab7 PDF.PrintButton -0x95be082d470e41c9 PDF.PrintPage -0x5b2d6203fcccbfa9 PDF.SaveButton -0xf7d4dd6244747179 PDF.SavePage -0x99ed44568e5ff51a PDF.ZoomFromBrowser -0x1d57434947820665 PDF.ZoomInButton -0x40ca10ced9d81d17 PDF.ZoomOutButton -0xcf6b6026dc11987b PDF_EnableReaderInfoBarCancel -0x00a3a874d94e0ae5 PDF_EnableReaderInfoBarOK -0x8cae37cf015a06ba PDF_EnableReaderInfoBarShown -0x1f8608be3f132d3f PDF_InstallReaderInfoBarCancel -0x020d4194a7e4b5e1 PDF_InstallReaderInfoBarOK -0xe8d7c93dac04f552 PDF_InstallReaderInfoBarShown -0xbd058843faaa1507 PDF_ReaderInterstitialCancel -0x673c5fad6fc74eac PDF_ReaderInterstitialIgnore -0xe1cd8e7ef514360d PDF_ReaderInterstitialShown -0x4bde610f2543fbd7 PDF_ReaderInterstitialUpdate -0x0b951f22f9dff291 PDF_Unsupported_3D -0x3c012d5822815c63 PDF_Unsupported_Attachment -0x7322054dc4e9d451 PDF_Unsupported_Bookmarks -0x75035f67192c6952 PDF_Unsupported_Digital_Signature -0xc09901d647ad722f PDF_Unsupported_Movie -0x282157da06d467b9 PDF_Unsupported_Portfolios -0xdb9aecef729fd680 PDF_Unsupported_Portfolios_Packages -0x74d8faa1b4e92791 PDF_Unsupported_Rights_Management -0x571f65a8518214ae PDF_Unsupported_Screen -0xdf8b4231d4bd3f90 PDF_Unsupported_Shared_Form -0xb7474a7496f9a77e PDF_Unsupported_Shared_Review -0x6efe497913838ea5 PDF_Unsupported_Sound -0x08640e2d5578cf94 PDF_Unsupported_XFA -0xde70e21d95b52c83 PDF_UseReaderInfoBarCancel -0xc35f4595bbf2a0fa PDF_UseReaderInfoBarOK -0xb7334d4097ba87ef PDF_UseReaderInfoBarShown -0xbf1053adc4e5cd87 PPAPI.BrokerInfobarClickedAllow -0x146afa4664512557 PPAPI.BrokerInfobarClickedDeny -0xcd9ed785cbf9424b PPAPI.BrokerInfobarDisplayed -0x002f8a6579713ab1 PPAPI.BrokerSettingAllow -0x957b8f35c259d30a PPAPI.BrokerSettingDeny -0xee3677bcca83ece9 PageDown -0xac722301695b9315 PageLoad -0x4e1f42df4b730437 PageLoadSRP -0x9b869c510c75c582 PageUp -0x728b4afd9c6b68d8 Panel_Minimize_Caption_Click -0x594141373655a8dc Panel_Minimize_Caption_Gesture -0x9ba3ff80fde405cd PasswordManager_Disabled -0x6cc1116fbd900ebf PasswordManager_Enabled -0xc21075c3ec75e973 PasswordManager_RemovePasswordException -0xa7613e3a71f2d755 PasswordManager_RemoveSavedPassword -0x36bb6559696dc912 Paste -0x5d0e6942f354a06c PasteAndMatchStyle -0xe4565a211e8f619e PeopleSearch_OpenChat -0xdf5f68b97b71ccb0 PeopleSearch_SendEmail -0x01c52e891f36d4fe PlatformVerificationAccepted -0x1929087478be7017 PlatformVerificationRejected -0xca471265efb33961 PluginContextMenu_RotateClockwise -0xa260d9dde6e550c4 PluginContextMenu_RotateCounterclockwise -0xacbaac84c1fef74e PluginLoaderPosix.LaunchUtilityProcess -0x708b2e1fd1b391b6 PluginLoaderPosix.UtilityProcessCrashed -0xd0aab07db234653a Plugin_200ForByteRange -0x6f2cd84fa374c281 Plugin_Blocked -0x241492a0aca346dd Plugin_BlockedByPolicy -0xcecb82fcd8e64529 Plugin_ClickToPlay -0xc52b281d793adc6b Plugin_Hide_Click -0x838019f901a8e405 Plugin_Hide_Menu -0x007757ef58e358af Plugin_Load_Click -0xd84554ce585d6c63 Plugin_Load_Menu -0x116bd7e07524f140 Plugin_Load_UI -0xa9b341634f9ea6ad Plugin_NPAPINotSupported -0x352f2d6315d52044 PrintNow -0xcb83fba9c48fd911 PrintPreview -0x89ad6a22de4ca850 PrintView_PrintDialog -0x77db2baef38a1efc PrintView_PrintNow -0xf5105f4fc4c32476 PrintView_ZoomMinus -0xd432798852b5bdde PrintView_ZoomPageFull -0x05bdd1f2f9628b7a PrintView_ZoomPageWidth -0x89fa328f28747907 PrintView_ZoomPlus -0xe23f821c3632547c ProcessSwapBindingsMismatch_RVHM -0x5afeaba074ef570d Redo -0x58d906ea1827983c RegisterProtocolHandler.ContextMenu_Open -0x2f25b38028a24b10 RegisterProtocolHandler.ContextMenu_Settings -0x21fd8c0ce09e106a RegisterProtocolHandler.InfoBar_Deny -0xb1d098583dc63173 RegisterProtocolHandler.InfoBar_LearnMore -0x1596504542ebc81d RegisterProtocolHandler.InfoBar_Shown -0xee4b2f044de46f4b RegisterProtocolHandler.Infobar_Accept -0x4d1c8263ba103675 Reload -0x4641db18f24b11e1 ReloadIgnoringCache -0xbcc54eb67cab2ae9 RemoveFormat -0xa728f2892204aabc ReportBug -0x4129a29cb4b8675d ResetProfile -0x8f83bd601e845bc1 RestoreTab -0x665cc78aff3f37f5 SBInterstitialMalwareDontProceed -0xb00e7625ea2bc160 SBInterstitialMalwareDontProceed_V1 -0x32d1ed791369d0f3 SBInterstitialMalwareDontProceed_V2 -0xe25978a348044c85 SBInterstitialMalwareForcedDontProceed -0x1cdfeccb11aecbfd SBInterstitialMalwareForcedDontProceed_V1 -0xdac337204e30c8f6 SBInterstitialMalwareForcedDontProceed_V2 -0xf02ed35cab0dcf4b SBInterstitialMalwareProceed -0x90c44a041377ef24 SBInterstitialMalwareProceed_V1 -0x7ca5ef009d952b10 SBInterstitialMalwareProceed_V2 -0x09af23846e454261 SBInterstitialMalwareShow -0x496ab75c7d751661 SBInterstitialMalwareShow_V1 -0xe882bc7f116fd6cd SBInterstitialMalwareShow_V2 -0xc81645e63b16cb44 SBInterstitialMultipleDontProceed -0x30f4fb842cb92288 SBInterstitialMultipleDontProceed_V1 -0xc20442d6ef877b4b SBInterstitialMultipleDontProceed_V2 -0x8dd6ffcec8e73dd6 SBInterstitialMultipleForcedDontProceed -0xe9d5cef9ca3da7a3 SBInterstitialMultipleForcedDontProceed_V1 -0x6c7b42218d4c0506 SBInterstitialMultipleForcedDontProceed_V2 -0x866cc35d2bcdf71d SBInterstitialMultipleProceed -0x7e06a09bd57fcafa SBInterstitialMultipleProceed_V1 -0x98962df6f96dd0be SBInterstitialMultipleProceed_V2 -0x6dbe9571062fcfde SBInterstitialMultipleShow -0xe639000a76d7e498 SBInterstitialMultipleShow_V1 -0xbe02295974c9a940 SBInterstitialMultipleShow_V2 -0x60578de80374e115 SBInterstitialPhishingDontProceed -0x827278fea0de39a7 SBInterstitialPhishingDontProceed_V1 -0x569becba96026dfa SBInterstitialPhishingDontProceed_V2 -0xf3714282bdf38737 SBInterstitialPhishingForcedDontProceed -0x62e1ba78dee8193c SBInterstitialPhishingForcedDontProceed_V1 -0x16741330208d63a3 SBInterstitialPhishingForcedDontProceed_V2 -0x340331e81b86f933 SBInterstitialPhishingProceed -0x959e2d9b5f4f4a1d SBInterstitialPhishingProceed_V1 -0x6c158c3fee4d1bcd SBInterstitialPhishingProceed_V2 -0xf8af4ff865669301 SBInterstitialPhishingShow -0x322a4e72ca14756b SBInterstitialPhishingShow_V1 -0xafb9afa1a94e513c SBInterstitialPhishingShow_V2 -0xe1df5f4bee6d0e2f SSL.DisplayedInsecureContent -0xba6bde79f10497a9 SSL.RanInsecureContent -0x12affa291e3d0146 SSL.RanInsecureContentGoogle -0xc9cc8cce247e49ba Save -0xfc7723f7c10f79d5 SavePage -0xc849f604a9954989 ScreenLocker_OnLoginFailure -0x0b8efe82e35086c2 ScreenLocker_Show -0xe643aadfeec1d6fc ScreenLocker_Signout -0x61ce545b97b3f1cd ScreenLocker_StartScreenSaver -0xf95c10e149147c52 Screenshot_CopyClipboard -0x5a3d18767d558d27 Screenshot_TakeFull -0x65e0ccd33d9eeb03 Screenshot_TakePartial -0x7a0c1d1c5392ec8e SearchWithRLZ -0x2e17e73bd11af537 SearchWithoutRLZ -0x702bbdc91c8e399d SelectAll -0xd016dafd5f0eca55 SelectLastTab -0x64658593002b74ad SelectLine -0x25243a56d24dffd3 SelectNextTab -0x7ae303310d8cfc29 SelectNumberedTab -0x893981a84c5d0871 SelectPrevTab -0x4578941ed28b34dd SelectProfile -0x5b166a78549ae371 SelectTab0 -0x8fadb48c1fd4356e SelectTab1 -0xfa3cfe1e11999c78 SelectTab2 -0x43382573b0490660 SelectTab3 -0xcc1402f3ad4cae89 SelectTab4 -0x2d9491c68a4ec635 SelectTab5 -0x8fa9d8e88271c82d SelectTab6 -0xdaa611aa645914e5 SelectTab7 -0x47c724f97b092332 SettingsResetBubble.LearnMore -0x3dfc1380fca28405 SettingsResetBubble.NoThanks -0x695a1dd28410f12d SettingsResetBubble.Reset -0x7eb3241cff786567 SettingsResetBubble.Show -0x9ab81dfe74af9e92 Shelf_AlignmentSetBottom -0x10ae2fefd987bcfa Shelf_AlignmentSetLeft -0x8f0d98403b8aafbd Shelf_AlignmentSetRight -0xbc7eb334ae9f29d0 ShowAccessibilitySettings -0x1da022468e27685c ShowAppLauncherPage -0x0d1d6961dd313b79 ShowAppMenu -0x9be2b265107318b8 ShowApplications -0x853927a304493ac7 ShowAsTab -0x2c5584a8586dc1ab ShowBluetoothSettingsPage -0x1b93c35c19ff3600 ShowBookmarkManager -0xd1a227df4f361dbb ShowBookmarks -0x1afb02b1f90b177e ShowBookmarksBar -0x4630aaa532379a8e ShowChargerReplacementDialog -0xe8705f2d7890043e ShowControlPanel -0x537e45904298316b ShowDateOptions -0xa27f5c1b4192af95 ShowDisplayOptions -0x3d0170d09a816e7f ShowDownloads -0xf530f742ba5b2683 ShowExtensions -0xa0118397d83c34d0 ShowFileBrowserFullTab -0xb1abf919e7eea1ad ShowHelpTab -0x12391b25bf32b0de ShowHelpTabViaF1 -0xb2a3954e828f87c9 ShowHelpTabViaWrenchMenu -0xb04b2eea6e26ebef ShowHistory -0x404c3c24f3091fd7 ShowJSConsole -0xa231b4c4e5ada262 ShowModalDialog -0x658963e1a47a5018 ShowOptions -0x564171f658dcb78e ShowPageMenu -0xecf70e5f5be34681 ShowRecentlyViewed -0xfd243b004d004e00 ShowSections_RecentSitesDisabled -0x3b86156dcf560cdb ShowSections_RecentSitesEnabled -0x5118181c3ece5e84 ShowSessions -0x1a4ebb180ba59b06 Shutdown -0x09d79ad36a385dc7 SiteChipPress -0x26f93e6e68e28a69 Star -0x2fbe99005588ef01 StartupTick -0x61d88befbaefa89a StatusArea_Accessability_DetailedView -0x7f426d3c3fc349cb StatusArea_Audio_CurrentInputDevice -0xc08bb03164134793 StatusArea_Audio_CurrentOutputDevice -0x42a8978c0a7e4910 StatusArea_Audio_Detailed -0x0bedcb41ae4e10a2 StatusArea_Audio_SwitchInputDevice -0x8dfc66b302b53c35 StatusArea_Audio_SwitchOutputDevice -0x98219794f13b6f19 StatusArea_AutoClickDisabled -0xdf8318eeee7499a5 StatusArea_AutoClickEnabled -0x4a4880442f78544f StatusArea_Bluetooth_Connect_Known -0xabf7cef9a1865298 StatusArea_Bluetooth_Connect_Unknown -0x39572ab6d4cb1829 StatusArea_Bluetooth_Detailed -0x37df6e0429625056 StatusArea_Bluetooth_Disabled -0x8e695b22dbec8ed8 StatusArea_Bluetooth_Enabled -0xd26c8140dacced4e StatusArea_BrightnessChanged -0x259ed8148e433ff5 StatusArea_Brightness_Detailed -0xb5744d753e598294 StatusArea_CapsLock_Detailed -0xda0423582289f5e3 StatusArea_CapsLock_DisabledByClick -0xaad53fbb4eddba16 StatusArea_CapsLock_EnabledByClick -0xdc5e7fa620ac749b StatusArea_CapsLock_Popup -0xba2d03681372e761 StatusArea_Drive_CancelOperation -0x807ca87245b0bcb8 StatusArea_Drive_Detailed -0x5cae26dc499854d5 StatusArea_Drive_Settings -0xdc358cbb3cd04f74 StatusArea_HighContrastDisabled -0xe15f1e2ffa6ca5a4 StatusArea_HighContrastEnabled -0xc506ef0ccc5f4842 StatusArea_IME_Detailed -0x5ed2d8ae9a4d27d0 StatusArea_IME_SwitchMode -0xa570b1aa4e3c9697 StatusArea_LargeCursorDisabled -0x89aefa3fbcaf90d2 StatusArea_LargeCursorEnabled -0x2e62eefedb24257f StatusArea_MagnifierDisabled -0xc3a8212bc7b08422 StatusArea_MagnifierEnabled -0x36388e1a16db228e StatusArea_MenuOpened -0x9ef9e0169d6c451c StatusArea_Network_ConnectConfigured -0x907b1216d95ddabd StatusArea_Network_ConnectToConfigured -0x4917e98c05c24323 StatusArea_Network_ConnectUnconfigured -0xd019e5bcf6a2be27 StatusArea_Network_ConnectionDetails -0x778eb25e08d1a0c6 StatusArea_Network_Detailed -0xf3cea7bbfa9f216b StatusArea_Network_JoinOther -0x7c0afaedc976b5e2 StatusArea_Network_Settings -0x4491cf3c0806bf66 StatusArea_Network_WifiDisabled -0x789ff2ba9f3872c8 StatusArea_Network_WifiEnabled -0xb43a5a7909331d06 StatusArea_SignOut -0xff9eaf2114140f32 StatusArea_SpokenFeedbackDisabled -0x90669ba72028bb72 StatusArea_SpokenFeedbackEnabled -0xf080e59c449d63cc StatusArea_VPN_ConnectToNetwork -0x3650d060cba6101c StatusArea_VPN_ConnectionDetails -0x1bf61eee704c2807 StatusArea_VPN_Detailed -0x6a55be1b0e62adec StatusArea_VPN_JoinOther -0x4e887baf440f63fd StatusArea_VPN_Settings -0x4047b397c22477f1 StatusArea_VirtualKeyboardDisabled -0x4d70ccf3a3a2e856 StatusArea_VirtualKeyboardEnabled -0xc0e9f67eb7dda1ac StatusArea_Volume_ChangedMenu -0x6c76189fc7f0b318 StatusArea_Volume_ChangedPopup -0x11a755d598c0c417 Stop -0x926a51baad949d12 Strikethrough -0x055a197053882ccd SuspiciousExtensionBubbleDismissed -0x197787e3bdf50f03 SyncedNotifications.SendingServiceDisabled -0xb789d5822bf411fe SyncedNotifications.SendingServiceEnabled -0xc3100ff8c8a00184 SystemBack -0x4c211ce58592c3e6 SystemBackForNavigation -0x4d56afb0a9837d41 TabContextMenu_BookmarkAllTabs -0x3712160bf3495979 TabContextMenu_CloseOtherTabs -0x417bd10a7c5e0210 TabContextMenu_CloseTab -0xa0965146c626cd18 TabContextMenu_CloseTabsOpenedBy -0x6adcbb467523c7d9 TabContextMenu_CloseTabsToRight -0xaadbb71a197d76ad TabContextMenu_CompactNavigationBar -0x89e073e006a686d1 TabContextMenu_Duplicate -0x88aefc727559ebaf TabContextMenu_NewTab -0x218d462d319b449c TabContextMenu_OpenTabsLeftToRight -0x807b9158faa086ca TabContextMenu_OpenTabsRightToLeft -0x1180c152ca336f5d TabContextMenu_Reload -0x7c86965f80103b54 TabContextMenu_RestoreTab -0xdcc35326aa8a5aeb TabContextMenu_TogglePinned -0xdd2b0058433af670 TabContextMenu_UseDestinationsTab_Off -0xe5f9f328f5d86b51 TabContextMenu_UseDestinationsTab_On -0x3fe88a1365e8dc47 TabContextMenu_UseVerticalTabs -0xb5ffa70ecb67b6f3 TabOverview_DetachCell -0x060f1f68f262b152 TabOverview_DragCell -0xad9c26360444768c TabOverview_DragOverMiniWindow -0x1cdf073bd93d5346 TabOverview_DropOnMiniWindow -0x0d699bd1ec9da211 TabOverview_ExitMouse -0x0dffb74e62a90ad3 TabOverview_Keystroke -0x65b8a6d7098e4825 TabOverview_PressedCreateNewBrowserButton -0x552a7bf28446f0aa Tab_DropURLBetweenTabs -0xc508d4d1583f51d6 Tab_DropURLOnTab -0xdad4668bc0b8e79c TaskManager -0xbe0a9ab559ef544d Terminate_ProcessMismatch_CreateNewWidget -0xa908a8af2378a060 Terminate_ProcessMismatch_CreateNewWindow -0x23afdebb497957f4 Themes.Gone -0x07c710bf40f92990 Themes.Loaded -0x77ae5b6a7529d8b5 Themes.Migrated -0x0e6b2a071df7800e Themes_Installed -0xf1b1f7db67f07b8c Themes_Reset -0xc2c0c13f120b9c7c ThirdPartyCookieBlockingDisabled -0x60aa171d4c36e576 ThirdPartyCookieBlockingEnabled -0x9e2832408b48e761 ToggleBold -0x303ce89ccac1592b ToggleCompactNavigationBar -0x94122935e94b54f3 ToggleDevTools -0xb639f67713eed8ea ToggleDevToolsConsole -0x887771883a8fbbae ToggleExtensionShelf -0x5250f5caaff979ba ToggleFullscreen -0xedf6e4b0b320885f ToggleItalic -0x904d810f7dd68a8e ToggleUnderline -0xb92bc75c64039682 Toolbar_DragStar -0xa7e3acf7f6fac337 Touchpad_Gesture_Overview -0x8ce9fbd537e4983c TouchscreenScroll -0x112c55c811540624 TouchscreenScrollFling -0x05691d7006369070 Touchscreen_Down -0x5d7f9a146f393dfc TrackpadScroll -0x6f2d421111db4527 TrackpadScrollFling -0xaf70b1ac863830a4 Transpose -0x84416581e5767dfc Tray_Help -0x1bba1e9ab7b38249 Tray_LockScreen -0xcb28c56123f30247 Tray_ShutDown -0x852721aa5fc738df Underline -0x1cdc076b28f70afa Undo -0xc1a39b6a60f8b2f8 Unlink -0x46b816f573557a53 Unselect -0xbcd41ce97e3c5568 UpdateChrome -0x0746723e6884a2fb Updater.ServerCertificateChanged -0x169dd0fd613963e8 Updater.ServerCertificateFailed -0x9b4b5afb2e791f23 UpgradeCheck_AlreadyUpToDate -0x27b72192736f904d UpgradeCheck_AlreadyUpgraded -0x7a54d49f1f7db4ee UpgradeCheck_Done -0x8bcf8b1b4f3c7451 UpgradeCheck_Error -0xe42c4b8d6cb9188f UpgradeCheck_Started -0x7edc3598854d0ab1 UpgradeCheck_TimedOut -0x72714123f2bd0636 UpgradeCheck_UpgradeIsAvailable -0xcd4da03d7cbaeb84 UpgradeCheck_Upgraded -0x624ddd04836efdcd Upgrade_Started -0xa909d722e2ae4285 ViewAboutConflicts -0xf3768ba285ebca7e ViewAboutFlash -0xd3879291d67e1389 ViewAboutNaCl -0xfb4a178539bac6bd ViewSource -0x91586aefc4a53dc7 VirtualKeyboardLoaded -0x6932875212d36f57 WP_EditImage -0x34a770eb3bbf5632 WP_Gallery -0xe56fc587145f9d39 WebView.CaptureVisibleRegion -0x462194a5096cab5e WebView.ClearData -0x1058b3af68275a1d WebView.ExecuteScript -0xbe313bfe6325dad0 WebView.Go -0xa63d5515805909a0 WebView.Guest.ClearData -0xd3e3c2a0e45dd70c WebView.Guest.OverrideUA -0x5b65b0b495331715 WebView.Guest.PermissionAllow.PluginLoad -0xa813e2cd71aa848d WebView.Guest.PermissionDeny.PluginLoad -0x8d7ae1bf68c5a2fe WebView.Guest.PluginLoadAllowed -0x26c605f6aa82b885 WebView.Guest.PluginLoadDenied -0xdc50ad37450d2f2d WebView.Guest.PluginLoadRequest -0x749d2199e73fa34c WebView.Guest.Terminate -0xdeb501c069a2ff19 WebView.Reload -0xdc14030aa71d5472 WebView.Stop -0x16400bbfff3e7619 WebView.Terminate -0x50de3f60387a3613 WebView.WebRequest.AddListener -0x949730a9468e27a1 WebsiteSettings_CookiesDialogOpened -0xddc2a5698e145d16 WebsiteSettings_Opened -0x75af94f65efafada Win8DesktopRestart -0x8f88175ece0f933b Win8MetroRestart -0x23e1a1f0dc2e830b WindowBorder_ClickTogglesSingleAxisMaximize -0xa21a06ea29c2aeab WindowDrag_MaximizeLeft -0x5ef95cd836af8b8c WindowDrag_MaximizeRight -0x831a2e98aa899122 WindowSelector_Overview -0x5f6808f9852ea6b0 WindowSelector_Selection -0x10aeb586cdc4c632 WorkerProcess_BadProcessToKill -0x554103fbf5582ee0 ZoomMinus -0x82d278b1f2e78bcd ZoomMinus_AtMinimum -0x4344cd22d03f6800 ZoomNormal -0x860db3714d502e03 ZoomPlus -0x644dbac8a6242f3f ZoomPlus_AtMaximum -0xbfb6af70a0626dcd justifyFull -0x2768e36e23ebef80 mceAddControl -0xfe4c8898ac25e705 mceBeginUndoLevel -0x02650dd15c064422 mceEndUndoLevel -0x2e58ba22e02b06bb mceInsertContent -0xd311c8d6ed1b9762 mceRepaint -0xf4c75cafe4330950 mceSave -0xfb7010f719b412c4 mceSetStyleInfo -0x7174576438022591 styleWithCSS -0xe302ba33f0b1d69e webapps.AddShortcut.AppShortcut -0x4ba515be980efd9c webapps.AddShortcut.AppShortcutApple -0xcc8255164f6f088c webapps.AddShortcut.Bookmark diff --git a/tools/metrics/actions/extract_actions.py b/tools/metrics/actions/extract_actions.py index 11a2e00..419df3e 100755 --- a/tools/metrics/actions/extract_actions.py +++ b/tools/metrics/actions/extract_actions.py @@ -16,20 +16,32 @@ See also: base/metrics/user_metrics.h http://wiki.corp.google.com/twiki/bin/view/Main/ChromeUserExperienceMetrics -If run with a "--hash" argument, chromeactions.txt will be updated. +After extracting all actions, the content will go through a pretty print +function to make sure it's well formatted. If the file content needs to be +changed, a window will be prompted asking for user's consent. The old version +will also be saved in a backup file. """ __author__ = 'evanm (Evan Martin)' -import hashlib from HTMLParser import HTMLParser +import logging import os import re +import shutil import sys +from xml.dom import minidom + +import print_style sys.path.insert(1, os.path.join(sys.path[0], '..', '..', 'python')) from google import path_utils +# Import the metrics/common module for pretty print xml. +sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'common')) +import diff_util +import pretty_print_xml + # Files that are known to use content::RecordComputedAction(), which means # they require special handling code in this script. # To add a new file, add it to this list and add the appropriate logic to @@ -115,6 +127,11 @@ REPOSITORY_ROOT = os.path.join(path_utils.ScriptDir(), '..', '..', '..') number_of_files_total = 0 +# Tags that need to be inserted to each 'action' tag and their default content. +TAGS = {'description': 'Please enter the description of the metric.', + 'owner': ('Please list the metric\'s owners. Add more owner tags as ' + 'needed.')} + def AddComputedActions(actions): """Add computed actions to the actions list. @@ -578,27 +595,192 @@ def AddAutomaticResetBannerActions(actions): actions.add('AutomaticSettingsReset_WebUIBanner_ManuallyClosed') actions.add('AutomaticSettingsReset_WebUIBanner_LearnMoreClicked') -def main(argv): - if '--hash' in argv: - hash_output = True - else: - hash_output = False - print >>sys.stderr, "WARNING: If you added new UMA tags, you must" + \ - " use the --hash option to update chromeactions.txt." - # if we do a hash output, we want to only append NEW actions, and we know - # the file we want to work on + +class Error(Exception): + pass + + +def _ExtractText(parent_dom, tag_name): + """Extract the text enclosed by |tag_name| under |parent_dom| + + Args: + parent_dom: The parent Element under which text node is searched for. + tag_name: The name of the tag which contains a text node. + + Returns: + A (list of) string enclosed by |tag_name| under |parent_dom|. + """ + texts = [] + for child_dom in parent_dom.getElementsByTagName(tag_name): + text_dom = child_dom.childNodes + if text_dom.length != 1: + raise Error('More than 1 child node exists under %s' % tag_name) + if text_dom[0].nodeType != minidom.Node.TEXT_NODE: + raise Error('%s\'s child node is not a text node.' % tag_name) + texts.append(text_dom[0].data) + return texts + + +class Action(object): + def __init__(self, name, description, owners, obsolete=None): + self.name = name + self.description = description + self.owners = owners + self.obsolete = obsolete + + +def ParseActionFile(file_content): + """Parse the XML data currently stored in the file. + + Args: + file_content: a string containing the action XML file content. + + Returns: + (actions, actions_dict) actions is a set with all user actions' names. + actions_dict is a dict from user action name to Action object. + """ + dom = minidom.parseString(file_content) + + comment_nodes = [] + # Get top-level comments. It is assumed that all comments are placed before + # <acionts> tag. Therefore the loop will stop if it encounters a non-comment + # node. + for node in dom.childNodes: + if node.nodeType == minidom.Node.COMMENT_NODE: + comment_nodes.append(node) + else: + break + actions = set() + actions_dict = {} + # Get each user action data. + for action_dom in dom.getElementsByTagName('action'): + action_name = action_dom.getAttribute('name') + actions.add(action_name) + + owners = _ExtractText(action_dom, 'owner') + # There is only one description for each user action. Get the first element + # of the returned list. + description_list = _ExtractText(action_dom, 'description') + if len(description_list) > 1: + logging.error('user actions "%s" has more than one descriptions. Exactly ' + 'one description is needed for each user action. Please ' + 'fix.', action_name) + sys.exit(1) + description = description_list[0] if description_list else None + # There is at most one obsolete tag for each user action. + obsolete_list = _ExtractText(action_dom, 'obsolete') + if len(obsolete_list) > 1: + logging.error('user actions "%s" has more than one obsolete tag. At most ' + 'one obsolete tag can be added for each user action. Please' + ' fix.', action_name) + sys.exit(1) + obsolete = obsolete_list[0] if obsolete_list else None + actions_dict[action_name] = Action(action_name, description, owners, + obsolete) + return actions, actions_dict, comment_nodes + + +def _CreateActionTag(doc, action_name, action_object): + """Create a new action tag. + + Format of an action tag: + <action name="name"> + <owner>Owner</owner> + <description>Description.</description> + <obsolete>Deprecated.</obsolete> + </action> + + <obsolete> is an optional tag. It's added to user actions that are no longer + used any more. + + If action_name is in actions_dict, the values to be inserted are based on the + corresponding Action object. If action_name is not in actions_dict, the + default value from TAGS is used. + + Args: + doc: The document under which the new action tag is created. + action_name: The name of an action. + action_object: An action object representing the data to be inserted. + + Returns: + An action tag Element with proper children elements. + """ + action_dom = doc.createElement('action') + action_dom.setAttribute('name', action_name) + + # Create owner tag. + if action_object and action_object.owners: + # If owners for this action is not None, use the stored value. Otherwise, + # use the default value. + for owner in action_object.owners: + owner_dom = doc.createElement('owner') + owner_dom.appendChild(doc.createTextNode(owner)) + action_dom.appendChild(owner_dom) + else: + # Use default value. + owner_dom = doc.createElement('owner') + owner_dom.appendChild(doc.createTextNode(TAGS.get('owner', ''))) + action_dom.appendChild(owner_dom) + + # Create description tag. + description_dom = doc.createElement('description') + action_dom.appendChild(description_dom) + if action_object and action_object.description: + # If description for this action is not None, use the store value. + # Otherwise, use the default value. + description_dom.appendChild(doc.createTextNode( + action_object.description)) + else: + description_dom.appendChild(doc.createTextNode( + TAGS.get('description', ''))) + + # Create obsolete tag. + if action_object and action_object.obsolete: + obsolete_dom = doc.createElement('obsolete') + action_dom.appendChild(obsolete_dom) + obsolete_dom.appendChild(doc.createTextNode( + action_object.obsolete)) - chromeactions_path = os.path.join(path_utils.ScriptDir(), "chromeactions.txt") + return action_dom - if hash_output: - f = open(chromeactions_path) - for line in f: - part = line.rpartition("\t") - part = part[2].strip() - actions.add(part) - f.close() +def PrettyPrint(actions, actions_dict, comment_nodes=[]): + """Given a list of action data, create a well-printed minidom document. + + Args: + actions: A list of action names. + actions_dict: A mappting from action name to Action object. + + Returns: + A well-printed minidom document that represents the input action data. + """ + doc = minidom.Document() + + # Attach top-level comments. + for node in comment_nodes: + doc.appendChild(node) + + actions_element = doc.createElement('actions') + doc.appendChild(actions_element) + + # Attach action node based on updated |actions|. + for action in sorted(actions): + actions_element.appendChild( + _CreateActionTag(doc, action, actions_dict.get(action, None))) + + return print_style.GetPrintStyle().PrettyPrintNode(doc) + + +def main(argv): + presubmit = ('--presubmit' in argv) + actions_xml_path = os.path.join(path_utils.ScriptDir(), 'actions.xml') + + # Save the original file content. + with open(actions_xml_path, 'rb') as f: + original_xml = f.read() + + actions, actions_dict, comment_nodes = ParseActionFile(original_xml) AddComputedActions(actions) # TODO(fmantek): bring back webkit editor actions. @@ -620,21 +802,28 @@ def main(argv): AddHistoryPageActions(actions) AddKeySystemSupportActions(actions) - if hash_output: - f = open(chromeactions_path, "wb") - - - # Print out the actions as a sorted list. - for action in sorted(actions): - if hash_output: - hash = hashlib.md5() - hash.update(action) - print >>f, '0x%s\t%s' % (hash.hexdigest()[:16], action) - else: - print action - - if hash_output: - print "Done. Do not forget to add chromeactions.txt to your changelist" + pretty = PrettyPrint(actions, actions_dict, comment_nodes) + if original_xml == pretty: + print 'actions.xml is correctly pretty-printed.' + sys.exit(0) + if presubmit: + logging.info('actions.xml is not formatted correctly; run ' + 'extract_actions.py to fix.') + sys.exit(1) + + # Prompt user to consent on the change. + if not diff_util.PromptUserToAcceptDiff( + original_xml, pretty, 'Is the new version acceptable?'): + logging.error('Aborting') + sys.exit(1) + + print 'Creating backup file: actions.old.xml.' + shutil.move(actions_xml_path, 'actions.old.xml') + + with open(actions_xml_path, 'wb') as f: + f.write(pretty) + print ('Updated %s. Don\'t forget to add it to your changelist' % + actions_xml_path) return 0 diff --git a/tools/metrics/actions/extract_actions_test.py b/tools/metrics/actions/extract_actions_test.py new file mode 100755 index 0000000..a5cfd38 --- /dev/null +++ b/tools/metrics/actions/extract_actions_test.py @@ -0,0 +1,199 @@ +#!/usr/bin/env python +# Copyright 2014 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +import unittest + +import extract_actions + +# Empty value to be inserted to |ACTIONS_MOCK|. +NO_VALUE = '' + +ONE_OWNER = '<owner>name1@google.com</owner>\n' +TWO_OWNERS = """ +<owner>name1@google.com</owner>\n +<owner>name2@google.com</owner>\n +""" + +DESCRIPTION = '<description>Description.</description>\n' +TWO_DESCRIPTIONS = """ +<description>Description.</description>\n +<description>Description2.</description>\n +""" + +OBSOLETE = '<obsolete>Not used anymore. Replaced by action2.</obsolete>\n' +TWO_OBSOLETE = '<obsolete>Obsolete1.</obsolete><obsolete>Obsolete2.</obsolete>' + +COMMENT = '<!--comment-->' + +# A format string to mock the input action.xml file. +ACTIONS_XML = """ +{comment} +<actions> + +<action name="action1"> +{owners}{obsolete}{description} +</action> + +</actions>""" + +NO_OWNER_EXPECTED_XML = ( + '<actions>\n\n' + '<action name="action1">\n' + ' <owner>Please list the metric\'s owners. ' + 'Add more owner tags as needed.</owner>\n' + ' <description>Description.</description>\n' + '</action>\n\n' + '</actions>\n' +) + +ONE_OWNER_EXPECTED_XML = ( + '<actions>\n\n' + '<action name="action1">\n' + ' <owner>name1@google.com</owner>\n' + ' <description>Description.</description>\n' + '</action>\n\n' + '</actions>\n' +) + +TWO_OWNERS_EXPECTED_XML = ( + '<actions>\n\n' + '<action name="action1">\n' + ' <owner>name1@google.com</owner>\n' + ' <owner>name2@google.com</owner>\n' + ' <description>Description.</description>\n' + '</action>\n\n' + '</actions>\n' +) + +NO_DESCRIPTION_EXPECTED_XML = ( + '<actions>\n\n' + '<action name="action1">\n' + ' <owner>name1@google.com</owner>\n' + ' <owner>name2@google.com</owner>\n' + ' <description>Please enter the description of the metric.</description>\n' + '</action>\n\n' + '</actions>\n' +) + +OBSOLETE_EXPECTED_XML = ( + '<actions>\n\n' + '<action name="action1">\n' + ' <owner>name1@google.com</owner>\n' + ' <owner>name2@google.com</owner>\n' + ' <description>Description.</description>\n' + ' <obsolete>Not used anymore. Replaced by action2.</obsolete>\n' + '</action>\n\n' + '</actions>\n' +) + +ADD_ACTION_EXPECTED_XML = ( + '<actions>\n\n' + '<action name="action1">\n' + ' <owner>name1@google.com</owner>\n' + ' <owner>name2@google.com</owner>\n' + ' <description>Description.</description>\n' + '</action>\n\n' + '<action name="action2">\n' + ' <owner>Please list the metric\'s owners.' + ' Add more owner tags as needed.</owner>\n' + ' <description>Please enter the description of the metric.</description>\n' + '</action>\n\n' + '</actions>\n' +) + +COMMENT_EXPECTED_XML = ( + '<!--comment-->\n\n' + '<actions>\n\n' + '<action name="action1">\n' + ' <owner>name1@google.com</owner>\n' + ' <owner>name2@google.com</owner>\n' + ' <description>Description.</description>\n' + '</action>\n\n' + '</actions>\n' +) + + +class ActionXmlTest(unittest.TestCase): + + def _GetProcessedAction(self, owner, description, obsolete, new_actions=[], + comment=NO_VALUE): + """Forms an actions XML string and returns it after processing. + + It parses the original XML string, adds new user actions (if there is any), + and pretty prints it. + + Args: + owner: the owner tag to be inserted in the original XML string. + description: the description tag to be inserted in the original XML + string. + obsolete: the obsolete tag to be inserted in the original XML string. + new_actions: optional. List of new user actions' names to be inserted. + comment: the comment tag to be inserted in the original XML string. + + Returns: + An updated and pretty-printed action XML string. + """ + # Form the actions.xml mock content based on the input parameters. + current_xml = ACTIONS_XML.format(owners=owner, description=description, + obsolete=obsolete, comment=comment) + actions, actions_dict, comments = extract_actions.ParseActionFile( + current_xml) + for new_action in new_actions: + actions.add(new_action) + return extract_actions.PrettyPrint(actions, actions_dict, comments) + + def testNoOwner(self): + xml_result = self._GetProcessedAction(NO_VALUE, DESCRIPTION, NO_VALUE) + self.assertEqual(NO_OWNER_EXPECTED_XML, xml_result) + + def testOneOwnerOneDescription(self): + xml_result = self._GetProcessedAction(ONE_OWNER, DESCRIPTION, NO_VALUE) + self.assertEqual(ONE_OWNER_EXPECTED_XML, xml_result) + + def testTwoOwners(self): + xml_result = self._GetProcessedAction(TWO_OWNERS, DESCRIPTION, NO_VALUE) + self.assertEqual(TWO_OWNERS_EXPECTED_XML, xml_result) + + def testNoDescription(self): + xml_result = self._GetProcessedAction(TWO_OWNERS, NO_VALUE, NO_VALUE) + self.assertEqual(NO_DESCRIPTION_EXPECTED_XML, xml_result) + + def testTwoDescriptions(self): + current_xml = ACTIONS_XML.format(owners=TWO_OWNERS, obsolete=NO_VALUE, + description=TWO_DESCRIPTIONS, + comment=NO_VALUE) + # Since there are two description tags, the function ParseActionFile will + # raise SystemExit with exit code 1. + with self.assertRaises(SystemExit) as cm: + _, _ = extract_actions.ParseActionFile(current_xml) + self.assertEqual(cm.exception.code, 1) + + def testObsolete(self): + xml_result = self._GetProcessedAction(TWO_OWNERS, DESCRIPTION, OBSOLETE) + self.assertEqual(OBSOLETE_EXPECTED_XML, xml_result) + + + def testTwoObsoletes(self): + current_xml = ACTIONS_XML.format(owners=TWO_OWNERS, obsolete=TWO_OBSOLETE, + description=DESCRIPTION, comment=NO_VALUE) + # Since there are two obsolete tags, the function ParseActionFile will + # raise SystemExit with exit code 1. + with self.assertRaises(SystemExit) as cm: + _, _ = extract_actions.ParseActionFile(current_xml) + self.assertEqual(cm.exception.code, 1) + + def testAddNewActions(self): + xml_result = self._GetProcessedAction(TWO_OWNERS, DESCRIPTION, NO_VALUE, + new_actions=['action2']) + self.assertEqual(ADD_ACTION_EXPECTED_XML, xml_result) + + def testComment(self): + xml_result = self._GetProcessedAction(TWO_OWNERS, DESCRIPTION, NO_VALUE, + comment=COMMENT) + self.assertEqual(COMMENT_EXPECTED_XML, xml_result) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/metrics/actions/print_style.py b/tools/metrics/actions/print_style.py new file mode 100755 index 0000000..5625669 --- /dev/null +++ b/tools/metrics/actions/print_style.py @@ -0,0 +1,41 @@ +# Copyright 2014 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Holds the constants for pretty printing actions.xml.""" + +import os +import sys + +# Import the metrics/common module for pretty print xml. +sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'common')) +import pretty_print_xml + +# Desired order for tag and tag attributes. +# { tag_name: [attribute_name, ...] } +ATTRIBUTE_ORDER = { + 'action': ['name'], + 'owner': [], + 'description': [], + 'obsolete': [], +} + +# Tag names for top-level nodes whose children we don't want to indent. +TAGS_THAT_DONT_INDENT = ['actions'] + +# Extra vertical spacing rules for special tag names. +# {tag_name: (newlines_after_open, newlines_before_close, newlines_after_close)} +TAGS_THAT_HAVE_EXTRA_NEWLINE = { + 'actions': (2, 1, 1), + 'action': (1, 1, 1), +} + +# Tags that we allow to be squished into a single line for brevity. +TAGS_THAT_ALLOW_SINGLE_LINE = ['owner', 'description', 'obsolete'] + +def GetPrintStyle(): + """Returns an XmlStyle object for pretty printing actions.""" + return pretty_print_xml.XmlStyle(ATTRIBUTE_ORDER, + TAGS_THAT_HAVE_EXTRA_NEWLINE, + TAGS_THAT_DONT_INDENT, + TAGS_THAT_ALLOW_SINGLE_LINE) diff --git a/tools/metrics/histograms/diffutil.py b/tools/metrics/common/diff_util.py index 0350a58..a4553df 100644 --- a/tools/metrics/histograms/diffutil.py +++ b/tools/metrics/common/diff_util.py @@ -1,4 +1,4 @@ -# Copyright 2013 The Chromium Authors. All rights reserved. +# Copyright 2014 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. diff --git a/tools/metrics/common/pretty_print_xml.py b/tools/metrics/common/pretty_print_xml.py new file mode 100644 index 0000000..ad37aa1 --- /dev/null +++ b/tools/metrics/common/pretty_print_xml.py @@ -0,0 +1,193 @@ +# Copyright 2014 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Utility file for pretty print xml file. + +The function PrettyPrintNode will be used for formatting both histograms.xml +and actions.xml. +""" + +import logging +import textwrap +import xml.dom.minidom + +WRAP_COLUMN = 80 + + +class Error(Exception): + pass + + +def LastLineLength(s): + """Returns the length of the last line in s. + + Args: + s: A multi-line string, including newlines. + + Returns: + The length of the last line in s, in characters. + """ + if s.rfind('\n') == -1: return len(s) + return len(s) - s.rfind('\n') - len('\n') + + +def XmlEscape(s): + """XML-escapes the given string, replacing magic characters (&<>") with their + escaped equivalents.""" + s = s.replace("&", "&").replace("<", "<") + s = s.replace("\"", """).replace(">", ">") + return s + + +class XmlStyle(object): + """A class that stores all style specification for an output xml file.""" + + def __init__(self, attribute_order, tags_that_have_extra_newline, + tags_that_dont_indent, tags_that_allow_single_line): + # List of tag names for top-level nodes whose children are not indented. + self.attribute_order = attribute_order + self.tags_that_have_extra_newline = tags_that_have_extra_newline + self.tags_that_dont_indent = tags_that_dont_indent + self.tags_that_allow_single_line = tags_that_allow_single_line + + def PrettyPrintNode(self, node, indent=0): + """Pretty-prints the given XML node at the given indent level. + + Args: + node: The minidom node to pretty-print. + indent: The current indent level. + + Returns: + The pretty-printed string (including embedded newlines). + + Raises: + Error if the XML has unknown tags or attributes. + """ + # Handle the top-level document node. + if node.nodeType == xml.dom.minidom.Node.DOCUMENT_NODE: + return '\n'.join([self.PrettyPrintNode(n) for n in node.childNodes]) + + # Handle text nodes. + if node.nodeType == xml.dom.minidom.Node.TEXT_NODE: + # Wrap each paragraph in the text to fit in the 80 column limit. + wrapper = textwrap.TextWrapper() + wrapper.initial_indent = ' ' * indent + wrapper.subsequent_indent = ' ' * indent + wrapper.break_on_hyphens = False + wrapper.break_long_words = False + wrapper.width = WRAP_COLUMN + text = XmlEscape(node.data) + # Remove any common indent. + text = textwrap.dedent(text.strip('\n')) + lines = text.split('\n') + # Split the text into paragraphs at blank line boundaries. + paragraphs = [[]] + for l in lines: + if len(l.strip()) == 0 and len(paragraphs[-1]) > 0: + paragraphs.append([]) + else: + paragraphs[-1].append(l) + # Remove trailing empty paragraph if present. + if len(paragraphs) > 0 and len(paragraphs[-1]) == 0: + paragraphs = paragraphs[:-1] + # Wrap each paragraph and separate with two newlines. + return '\n\n'.join([wrapper.fill('\n'.join(p)) for p in paragraphs]) + + # Handle element nodes. + if node.nodeType == xml.dom.minidom.Node.ELEMENT_NODE: + newlines_after_open, newlines_before_close, newlines_after_close = ( + self.tags_that_have_extra_newline.get(node.tagName, (1, 1, 0))) + # Open the tag. + s = ' ' * indent + '<' + node.tagName + + # Calculate how much space to allow for the '>' or '/>'. + closing_chars = 1 + if not node.childNodes: + closing_chars = 2 + + # Pretty-print the attributes. + attributes = node.attributes.keys() + if attributes: + # Reorder the attributes. + if node.tagName not in self.attribute_order: + unrecognized_attributes = attributes + else: + unrecognized_attributes = ( + [a for a in attributes + if a not in self.attribute_order[node.tagName]]) + attributes = [a for a in self.attribute_order[node.tagName] + if a in attributes] + + for a in unrecognized_attributes: + logging.error( + 'Unrecognized attribute "%s" in tag "%s"' % (a, node.tagName)) + if unrecognized_attributes: + raise Error() + + for a in attributes: + value = XmlEscape(node.attributes[a].value) + # Replace sequences of whitespace with single spaces. + words = value.split() + a_str = ' %s="%s"' % (a, ' '.join(words)) + # Start a new line if the attribute will make this line too long. + if LastLineLength(s) + len(a_str) + closing_chars > WRAP_COLUMN: + s += '\n' + ' ' * (indent + 3) + # Output everything up to the first quote. + s += ' %s="' % (a) + value_indent_level = LastLineLength(s) + # Output one word at a time, splitting to the next line where + # necessary. + column = value_indent_level + for i, word in enumerate(words): + # This is slightly too conservative since not every word will be + # followed by the closing characters... + if i > 0 and (column + len(word) + 1 + closing_chars > WRAP_COLUMN): + s = s.rstrip() # remove any trailing whitespace + s += '\n' + ' ' * value_indent_level + column = value_indent_level + s += word + ' ' + column += len(word) + 1 + s = s.rstrip() # remove any trailing whitespace + s += '"' + s = s.rstrip() # remove any trailing whitespace + + # Pretty-print the child nodes. + if node.childNodes: + s += '>' + # Calculate the new indent level for child nodes. + new_indent = indent + if node.tagName not in self.tags_that_dont_indent: + new_indent += 2 + child_nodes = node.childNodes + + # Recursively pretty-print the child nodes. + child_nodes = [self.PrettyPrintNode(n, indent=new_indent) + for n in child_nodes] + child_nodes = [c for c in child_nodes if len(c.strip()) > 0] + + # Determine whether we can fit the entire node on a single line. + close_tag = '</%s>' % node.tagName + space_left = WRAP_COLUMN - LastLineLength(s) - len(close_tag) + if (node.tagName in self.tags_that_allow_single_line and + len(child_nodes) == 1 and + len(child_nodes[0].strip()) <= space_left): + s += child_nodes[0].strip() + else: + s += '\n' * newlines_after_open + '\n'.join(child_nodes) + s += '\n' * newlines_before_close + ' ' * indent + s += close_tag + else: + s += '/>' + s += '\n' * newlines_after_close + return s + + # Handle comment nodes. + if node.nodeType == xml.dom.minidom.Node.COMMENT_NODE: + return '<!--%s-->\n' % node.data + + # Ignore other node types. This could be a processing instruction + # (<? ... ?>) or cdata section (<![CDATA[...]]!>), neither of which are + # legal in the histograms XML at present. + logging.error('Ignoring unrecognized node data: %s' % node.toxml()) + raise Error() diff --git a/tools/metrics/histograms/pretty_print.py b/tools/metrics/histograms/pretty_print.py index bde97fd..73d2cf6 100755 --- a/tools/metrics/histograms/pretty_print.py +++ b/tools/metrics/histograms/pretty_print.py @@ -14,58 +14,20 @@ and wrapping text nodes, so we implement our own full custom XML pretty-printer. from __future__ import with_statement -import diffutil -import json import logging import os import shutil import sys -import textwrap import xml.dom.minidom +import print_style + sys.path.insert(1, os.path.join(sys.path[0], '..', '..', 'python')) from google import path_utils -WRAP_COLUMN = 80 - -# Desired order for tag attributes; attributes listed here will appear first, -# and in the same order as in these lists. -# { tag_name: [attribute_name, ...] } -ATTRIBUTE_ORDER = { - 'enum': ['name', 'type'], - 'histogram': ['name', 'enum', 'units'], - 'int': ['value', 'label'], - 'fieldtrial': ['name', 'separator', 'ordering'], - 'group': ['name', 'label'], - 'affected-histogram': ['name'], - 'with-group': ['name'], -} - -# Tag names for top-level nodes whose children we don't want to indent. -TAGS_THAT_DONT_INDENT = [ - 'histogram-configuration', - 'histograms', - 'fieldtrials', - 'enums' -] - -# Extra vertical spacing rules for special tag names. -# {tag_name: (newlines_after_open, newlines_before_close, newlines_after_close)} -TAGS_THAT_HAVE_EXTRA_NEWLINE = { - 'histogram-configuration': (2, 1, 1), - 'histograms': (2, 1, 1), - 'fieldtrials': (2, 1, 1), - 'enums': (2, 1, 1), - 'histogram': (1, 1, 1), - 'enum': (1, 1, 1), - 'fieldtrial': (1, 1, 1), -} - -# Tags that we allow to be squished into a single line for brevity. -TAGS_THAT_ALLOW_SINGLE_LINE = [ - 'summary', - 'int', -] +# Import the metrics/common module. +sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'common')) +import diff_util # Tags whose children we want to alphabetize. The key is the parent tag name, # and the value is a pair of the tag name of the children we want to sort, @@ -84,165 +46,6 @@ class Error(Exception): pass -def LastLineLength(s): - """Returns the length of the last line in s. - - Args: - s: A multi-line string, including newlines. - - Returns: - The length of the last line in s, in characters. - """ - if s.rfind('\n') == -1: return len(s) - return len(s) - s.rfind('\n') - len('\n') - - -def XmlEscape(s): - """XML-escapes the given string, replacing magic characters (&<>") with their - escaped equivalents.""" - s = s.replace("&", "&").replace("<", "<") - s = s.replace("\"", """).replace(">", ">") - return s - - -def PrettyPrintNode(node, indent=0): - """Pretty-prints the given XML node at the given indent level. - - Args: - node: The minidom node to pretty-print. - indent: The current indent level. - - Returns: - The pretty-printed string (including embedded newlines). - - Raises: - Error if the XML has unknown tags or attributes. - """ - # Handle the top-level document node. - if node.nodeType == xml.dom.minidom.Node.DOCUMENT_NODE: - return '\n'.join([PrettyPrintNode(n) for n in node.childNodes]) - - # Handle text nodes. - if node.nodeType == xml.dom.minidom.Node.TEXT_NODE: - # Wrap each paragraph in the text to fit in the 80 column limit. - wrapper = textwrap.TextWrapper() - wrapper.initial_indent = ' ' * indent - wrapper.subsequent_indent = ' ' * indent - wrapper.break_on_hyphens = False - wrapper.break_long_words = False - wrapper.width = WRAP_COLUMN - text = XmlEscape(node.data) - # Remove any common indent. - text = textwrap.dedent(text.strip('\n')) - lines = text.split('\n') - # Split the text into paragraphs at blank line boundaries. - paragraphs = [[]] - for l in lines: - if len(l.strip()) == 0 and len(paragraphs[-1]) > 0: - paragraphs.append([]) - else: - paragraphs[-1].append(l) - # Remove trailing empty paragraph if present. - if len(paragraphs) > 0 and len(paragraphs[-1]) == 0: - paragraphs = paragraphs[:-1] - # Wrap each paragraph and separate with two newlines. - return '\n\n'.join([wrapper.fill('\n'.join(p)) for p in paragraphs]) - - # Handle element nodes. - if node.nodeType == xml.dom.minidom.Node.ELEMENT_NODE: - newlines_after_open, newlines_before_close, newlines_after_close = ( - TAGS_THAT_HAVE_EXTRA_NEWLINE.get(node.tagName, (1, 1, 0))) - # Open the tag. - s = ' ' * indent + '<' + node.tagName - - # Calculate how much space to allow for the '>' or '/>'. - closing_chars = 1 - if not node.childNodes: - closing_chars = 2 - - # Pretty-print the attributes. - attributes = node.attributes.keys() - if attributes: - # Reorder the attributes. - if not node.tagName in ATTRIBUTE_ORDER: - unrecognized_attributes = attributes; - else: - unrecognized_attributes = ( - [a for a in attributes if not a in ATTRIBUTE_ORDER[node.tagName]]) - attributes = ( - [a for a in ATTRIBUTE_ORDER[node.tagName] if a in attributes]) - - for a in unrecognized_attributes: - logging.error( - 'Unrecognized attribute "%s" in tag "%s"' % (a, node.tagName)) - if unrecognized_attributes: - raise Error() - - for a in attributes: - value = XmlEscape(node.attributes[a].value) - # Replace sequences of whitespace with single spaces. - words = value.split() - a_str = ' %s="%s"' % (a, ' '.join(words)) - # Start a new line if the attribute will make this line too long. - if LastLineLength(s) + len(a_str) + closing_chars > WRAP_COLUMN: - s += '\n' + ' ' * (indent + 3) - # Output everything up to the first quote. - s += ' %s="' % (a) - value_indent_level = LastLineLength(s) - # Output one word at a time, splitting to the next line where necessary. - column = value_indent_level - for i, word in enumerate(words): - # This is slightly too conservative since not every word will be - # followed by the closing characters... - if i > 0 and (column + len(word) + 1 + closing_chars > WRAP_COLUMN): - s = s.rstrip() # remove any trailing whitespace - s += '\n' + ' ' * value_indent_level - column = value_indent_level - s += word + ' ' - column += len(word) + 1 - s = s.rstrip() # remove any trailing whitespace - s += '"' - s = s.rstrip() # remove any trailing whitespace - - # Pretty-print the child nodes. - if node.childNodes: - s += '>' - # Calculate the new indent level for child nodes. - new_indent = indent - if node.tagName not in TAGS_THAT_DONT_INDENT: - new_indent += 2 - child_nodes = node.childNodes - - # Recursively pretty-print the child nodes. - child_nodes = [PrettyPrintNode(n, indent=new_indent) for n in child_nodes] - child_nodes = [c for c in child_nodes if len(c.strip()) > 0] - - # Determine whether we can fit the entire node on a single line. - close_tag = '</%s>' % node.tagName - space_left = WRAP_COLUMN - LastLineLength(s) - len(close_tag) - if (node.tagName in TAGS_THAT_ALLOW_SINGLE_LINE and - len(child_nodes) == 1 and len(child_nodes[0].strip()) <= space_left): - s += child_nodes[0].strip() - else: - s += '\n' * newlines_after_open + '\n'.join(child_nodes) - s += '\n' * newlines_before_close + ' ' * indent - s += close_tag - else: - s += '/>' - s += '\n' * newlines_after_close - return s - - # Handle comment nodes. - if node.nodeType == xml.dom.minidom.Node.COMMENT_NODE: - return '<!--%s-->\n' % node.data - - # Ignore other node types. This could be a processing instruction (<? ... ?>) - # or cdata section (<![CDATA[...]]!>), neither of which are legal in the - # histograms XML at present. - logging.error('Ignoring unrecognized node data: %s' % node.toxml()) - raise Error() - - def unsafeAppendChild(parent, child): """Append child to parent's list of children, ignoring the possibility that it is already in another node's childNodes list. Requires that the previous @@ -304,14 +107,14 @@ def PrettyPrint(raw_xml): """Pretty-print the given XML. Args: - xml: The contents of the histograms XML file, as a string. + raw_xml: The contents of the histograms XML file, as a string. Returns: The pretty-printed version. """ tree = xml.dom.minidom.parseString(raw_xml) tree = TransformByAlphabetizing(tree) - return PrettyPrintNode(tree) + return print_style.GetPrintStyle().PrettyPrintNode(tree) def main(): @@ -356,7 +159,7 @@ def main(): logging.info('%s is not formatted correctly; run pretty_print.py to fix.' % histograms_filename) sys.exit(1) - if not diffutil.PromptUserToAcceptDiff( + if not diff_util.PromptUserToAcceptDiff( xml, pretty, 'Is the prettified version acceptable?'): logging.error('Aborting') diff --git a/tools/metrics/histograms/print_style.py b/tools/metrics/histograms/print_style.py new file mode 100755 index 0000000..58ab81e --- /dev/null +++ b/tools/metrics/histograms/print_style.py @@ -0,0 +1,53 @@ +# Copyright 2014 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Holds the constants for pretty printing histograms.xml.""" + +import os +import sys + +# Import the metrics/common module for pretty print xml. +sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'common')) +import pretty_print_xml + +# Desired order for tag attributes; attributes listed here will appear first, +# and in the same order as in these lists. +# { tag_name: [attribute_name, ...] } +ATTRIBUTE_ORDER = { + 'enum': ['name', 'type'], + 'histogram': ['name', 'enum', 'units'], + 'int': ['value', 'label'], + 'fieldtrial': ['name', 'separator', 'ordering'], + 'group': ['name', 'label'], + 'affected-histogram': ['name'], + 'with-group': ['name'], +} + +# Tag names for top-level nodes whose children we don't want to indent. +TAGS_THAT_DONT_INDENT = [ + 'histogram-configuration', + 'histograms', + 'fieldtrials', + 'enums' +] + +# Extra vertical spacing rules for special tag names. +# {tag_name: (newlines_after_open, newlines_before_close, newlines_after_close)} +TAGS_THAT_HAVE_EXTRA_NEWLINE = { + 'histogram-configuration': (2, 1, 1), + 'histograms': (2, 1, 1), + 'fieldtrials': (2, 1, 1), + 'enums': (2, 1, 1), + 'histogram': (1, 1, 1), + 'enum': (1, 1, 1), + 'fieldtrial': (1, 1, 1), +} + +# Tags that we allow to be squished into a single line for brevity. +TAGS_THAT_ALLOW_SINGLE_LINE = [ + 'summary', + 'int', +] + + diff --git a/tools/metrics/histograms/update_extension_functions.py b/tools/metrics/histograms/update_extension_functions.py index 3bc6315..d21f124 100644 --- a/tools/metrics/histograms/update_extension_functions.py +++ b/tools/metrics/histograms/update_extension_functions.py @@ -13,9 +13,11 @@ import re import sys from xml.dom import minidom +import print_style -from diffutil import PromptUserToAcceptDiff -from pretty_print import PrettyPrintNode +# Import the metrics/common module. +sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'common')) +from diff_util import PromptUserToAcceptDiff HISTOGRAMS_PATH = 'histograms.xml' ENUM_NAME = 'ExtensionFunctions' @@ -136,7 +138,8 @@ def main(): UpdateHistogramDefinitions(histogram_values, histograms_doc) Log('Writing out new histograms file.') - new_xml = PrettyPrintNode(histograms_doc) + new_xml = print_style.GetPrintStyle().PrettyPrintNode(histograms_doc) + if PromptUserToAcceptDiff(xml, new_xml, 'Is the updated version acceptable?'): with open(HISTOGRAMS_PATH, 'wb') as f: f.write(new_xml) diff --git a/tools/metrics/histograms/update_policies.py b/tools/metrics/histograms/update_policies.py index 5cad317..79f524f 100644 --- a/tools/metrics/histograms/update_policies.py +++ b/tools/metrics/histograms/update_policies.py @@ -8,6 +8,7 @@ definitions read from policy_templates.json. If the file was pretty-printed, the updated version is pretty-printed too. """ +import os import re import sys @@ -15,12 +16,15 @@ from ast import literal_eval from optparse import OptionParser from xml.dom import minidom -from diffutil import PromptUserToAcceptDiff -from pretty_print import PrettyPrintNode +import print_style + +# Import the metrics/common module. +sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'common')) +from diff_util import PromptUserToAcceptDiff HISTOGRAMS_PATH = 'histograms.xml' -POLICY_TEMPLATES_PATH = - '../../../components/policy/resources/policy_templates.json' +POLICY_TEMPLATES_PATH = ( + '../../../components/policy/resources/policy_templates.json') ENUM_NAME = 'EnterprisePolicies' class UserError(Exception): @@ -118,8 +122,7 @@ def main(): xml = f.read() UpdateHistogramDefinitions(policy_templates, histograms_doc) - - new_xml = PrettyPrintNode(histograms_doc) + new_xml = print_style.GetPrintStyle().PrettyPrintNode(histograms_doc) if PromptUserToAcceptDiff(xml, new_xml, 'Is the updated version acceptable?'): with open(HISTOGRAMS_PATH, 'wb') as f: f.write(new_xml) |