| OLD | NEW |
| (Empty) | |
| 1 <!-- |
| 2 Copyright 2013 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. |
| 5 --> |
| 6 |
| 7 <!-- |
| 8 This file is used to generate a comprehensive list of Chrome histograms along |
| 9 with a detailed description for each histogram. |
| 10 |
| 11 TODO(isherman): Update this prose. |
| 12 Please pretty-print and validate your edits by running the pretty_print.py |
| 13 and update_descriptions.py scripts in the same directory as this file before |
| 14 uploading your change for review. |
| 15 |
| 16 Take a moment to page through the contents of this file. You will find |
| 17 three sections: |
| 18 |
| 19 * The histograms section describes base histograms, giving their name, |
| 20 and optionally their units or enum type, a short one-line summary, |
| 21 and optionally a more detailed description. |
| 22 * The enums section defines and documents the enumerated types referred to by |
| 23 the histograms. |
| 24 * The fieldtrials section defines active field trials and their groups, along |
| 25 with their descriptions. |
| 26 |
| 27 Each field trial lists the histograms that it affects. The complete list of |
| 28 histograms is computed by appending the field trial group names to each of |
| 29 the affected histograms. For example, define the following: |
| 30 |
| 31 <histogram name="FileLoadLatency"/> |
| 32 |
| 33 <fieldtrial name="SuperHttpExperiment"> |
| 34 <group name="SuperHttpEnabled"> |
| 35 <group name="SuperHttpDisabled"> |
| 36 <affected-histogram name="FileLoadLatency"/> |
| 37 </fieldtrial> |
| 38 |
| 39 The complete list of histograms will be: |
| 40 |
| 41 FileLoadLatency |
| 42 FileLoadLatency_SuperHttpEnabled |
| 43 FileLoadLatency_SuperHttpDisabled |
| 44 |
| 45 Field trial definitions can currently be used in any situation where multiple |
| 46 suffixes need to be appended to a histogram name; they do not have to |
| 47 correspond to actual field trials in the Chrome source code. |
| 48 |
| 49 TODO(mlloyd): Refactor the XML so that field trials can be distinguished from |
| 50 other types of suffix sets. |
| 51 --> |
| 52 |
| 53 <histogram-configuration> |
| 54 |
| 55 <!-- Histogram definitions --> |
| 56 |
| 57 <histograms> |
| 58 |
| 59 <histogram name="Autofill.AddressSuggestionsCount"> |
| 60 <summary> |
| 61 The number of address suggestions shown in the Autofill popup. |
| 62 </summary> |
| 63 </histogram> |
| 64 |
| 65 <histogram name="AutoFill.CCInfoBarAccepted"> |
| 66 <obsolete> |
| 67 Deprecated as of 3/2011, replaced by Autofill.CreditCardInfoBar. |
| 68 </obsolete> |
| 69 <summary>The Autofill credit card info bar was accepted.</summary> |
| 70 </histogram> |
| 71 |
| 72 <histogram name="AutoFill.CCInfoBarDenied"> |
| 73 <obsolete> |
| 74 Deprecated as of 3/2011, replaced by Autofill.CreditCardInfoBar. |
| 75 </obsolete> |
| 76 <summary>The Autofill credit card info bar was denied.</summary> |
| 77 </histogram> |
| 78 |
| 79 <histogram name="Autofill.CreditCardInfoBar" enum="AutofillCreditCardInfoBar"> |
| 80 <summary> |
| 81 The relative frequency with which users accept, deny, or ignore the Autofill |
| 82 credit card info bar prompt. |
| 83 </summary> |
| 84 </histogram> |
| 85 |
| 86 <histogram name="Autofill.DeveloperEngagement" |
| 87 enum="AutofillDeveloperEngagement"> |
| 88 <summary> |
| 89 Measures the adoption of the HTML autocomplete type hint specification (see |
| 90 http://is.gd/whatwg_autocomplete for more details). For each fillable form |
| 91 detected, logs whether that form includes author-specified type hints. |
| 92 </summary> |
| 93 </histogram> |
| 94 |
| 95 <histogram name="Autofill.FillDuration.FromInteraction.WithAutofill"> |
| 96 <summary> |
| 97 Time elapsed between the user's first interaction with a form and the form's |
| 98 submission, for an autofilled form. |
| 99 </summary> |
| 100 </histogram> |
| 101 |
| 102 <histogram name="Autofill.FillDuration.FromInteraction.WithoutAutofill"> |
| 103 <summary> |
| 104 Time elapsed between the user's first interaction with a form and the form's |
| 105 submission, for a non-autofilled form. |
| 106 </summary> |
| 107 </histogram> |
| 108 |
| 109 <histogram name="Autofill.FillDuration.FromLoad.WithAutofill"> |
| 110 <summary> |
| 111 Time elapsed between form load and form submission, for an autofilled form. |
| 112 </summary> |
| 113 </histogram> |
| 114 |
| 115 <histogram name="Autofill.FillDuration.FromLoad.WithoutAutofill"> |
| 116 <summary> |
| 117 Time elapsed between form load and form submission, for a non-autofilled |
| 118 form. |
| 119 </summary> |
| 120 </histogram> |
| 121 |
| 122 <histogram name="Autofill.IsEnabled.PageLoad" enum="BooleanEnabled"> |
| 123 <summary> |
| 124 Tracks whether Autofill is enabled on page load for a page containing forms. |
| 125 </summary> |
| 126 </histogram> |
| 127 |
| 128 <histogram name="Autofill.IsEnabled.Startup" enum="BooleanEnabled"> |
| 129 <summary>Tracks whether Autofill is enabled when Chrome launches.</summary> |
| 130 </histogram> |
| 131 |
| 132 <histogram name="AutoFill.ProfileCount"> |
| 133 <obsolete> |
| 134 Deprecated as of 3/2011, replaced by Autofill.StoredProfileCount. |
| 135 </obsolete> |
| 136 <summary>The number of Autofill address profiles a user has.</summary> |
| 137 </histogram> |
| 138 |
| 139 <histogram name="AutoFill.Quality" enum="AutofillQuality"> |
| 140 <obsolete> |
| 141 Deprecated as of 3/2011, replaced by Autofill.Quality. |
| 142 </obsolete> |
| 143 <summary>The quality of the AutoFill implementation.</summary> |
| 144 </histogram> |
| 145 |
| 146 <histogram name="Autofill.Quality" enum="AutofillQuality"> |
| 147 <summary>The quality of the Autofill implementation.</summary> |
| 148 </histogram> |
| 149 |
| 150 <histogram name="Autofill.Quality.HeuristicType" enum="AutofillTypeQuality"> |
| 151 <summary>The quality of Autofill's heuristic field type detection.</summary> |
| 152 </histogram> |
| 153 |
| 154 <histogram name="Autofill.Quality.HeuristicType.ByFieldType" |
| 155 enum="AutofillTypeQualityByFieldType"> |
| 156 <summary> |
| 157 The quality of Autofill's heuristic field type detection, broken down by the |
| 158 specific field type. Fields with multiple possible types (based on the |
| 159 stored Autofill data) are logged as having ambiguous type. |
| 160 </summary> |
| 161 </histogram> |
| 162 |
| 163 <histogram name="Autofill.Quality.PredictedType" enum="AutofillTypeQuality"> |
| 164 <summary>The overall quality of the Autofill field type predictions.</summary> |
| 165 </histogram> |
| 166 |
| 167 <histogram name="Autofill.Quality.PredictedType.ByFieldType" |
| 168 enum="AutofillTypeQualityByFieldType"> |
| 169 <summary> |
| 170 The overall quality of the Autofill field type predictions, broken down by |
| 171 the specific field type. Fields with multiple possible types (based on the |
| 172 stored Autofill data) are logged as having ambiguous type. |
| 173 </summary> |
| 174 </histogram> |
| 175 |
| 176 <histogram name="Autofill.Quality.ServerType" enum="AutofillTypeQuality"> |
| 177 <summary>The quality of the Autofill server's field type detection.</summary> |
| 178 </histogram> |
| 179 |
| 180 <histogram name="Autofill.Quality.ServerType.ByFieldType" |
| 181 enum="AutofillTypeQualityByFieldType"> |
| 182 <summary> |
| 183 The quality of the Autofill server's field type detection, broken down by |
| 184 the specific field type. Fields with multiple possible types (based on the |
| 185 stored Autofill data) are logged as having ambiguous type. |
| 186 </summary> |
| 187 </histogram> |
| 188 |
| 189 <histogram name="AutoFill.RequestErrorimcklfaapmppdhilegjoahjbahdgfhcn"> |
| 190 <summary>TBD.</summary> |
| 191 </histogram> |
| 192 |
| 193 <histogram name="AutoFill.RequestSuccessimcklfaapmppdhilegjoahjbahdgfhcn"> |
| 194 <summary>TBD.</summary> |
| 195 </histogram> |
| 196 |
| 197 <histogram name="Autofill.ServerExperimentId" enum="AutofillExperimentId"> |
| 198 <obsolete> |
| 199 Deprecated as of 6/2011, replaced by Autofill.ServerExperimentId.Query. |
| 200 </obsolete> |
| 201 <summary> |
| 202 The experiment ID received in response to an Autofill server query. |
| 203 </summary> |
| 204 </histogram> |
| 205 |
| 206 <histogram name="Autofill.ServerExperimentId.Query" enum="AutofillExperimentId"> |
| 207 <summary> |
| 208 The experiment ID received in response to an Autofill server query. |
| 209 </summary> |
| 210 </histogram> |
| 211 |
| 212 <histogram name="Autofill.ServerExperimentId.Upload" |
| 213 enum="AutofillExperimentId"> |
| 214 <summary> |
| 215 The experiment ID received at the time of an Autofill upload. |
| 216 </summary> |
| 217 </histogram> |
| 218 |
| 219 <histogram name="AutoFill.ServerQueryResponse" enum="AutofillQueryResult"> |
| 220 <obsolete> |
| 221 Deprecated as of 3/2011, replaced by Autofill.ServerQueryResponse. |
| 222 </obsolete> |
| 223 <summary>The usefulness of AutoFill server information.</summary> |
| 224 </histogram> |
| 225 |
| 226 <histogram name="Autofill.ServerQueryResponse" enum="AutofillQueryResult"> |
| 227 <summary>The usefulness of Autofill server information.</summary> |
| 228 </histogram> |
| 229 |
| 230 <histogram name="Autofill.StoredProfileCount"> |
| 231 <summary> |
| 232 The number of Autofill addresses a user has stored, measured at launch time. |
| 233 </summary> |
| 234 </histogram> |
| 235 |
| 236 <histogram name="Autofill.UserHappiness" enum="AutofillUserHappiness"> |
| 237 <summary> |
| 238 Measures the frequency of various events in the Autofill user interaction |
| 239 flow. By comparing frequencies, we can compute several interesting |
| 240 "user happiness" metrics. |
| 241 </summary> |
| 242 </histogram> |
| 243 |
| 244 <histogram name="Enterprise.Policies" enum="EnterprisePolicies"> |
| 245 <summary> |
| 246 A set of enterprise policy rules that are in use. This is recorded every 24 |
| 247 hours and at startup, if the last recording was earlier than a day before. |
| 248 </summary> |
| 249 </histogram> |
| 250 |
| 251 <histogram name="Extensions.FunctionCalls" enum="ExtensionFunctions"> |
| 252 <summary>Number of calls to extension functions.</summary> |
| 253 </histogram> |
| 254 |
| 255 </histograms> |
| 256 |
| 257 <!-- Enum types --> |
| 258 |
| 259 <enums> |
| 260 |
| 261 <enum name="AutofillCreditCardInfoBar" type="int"> |
| 262 <int value="0" label="Shown"/> |
| 263 <int value="1" label="Accepted"/> |
| 264 <int value="2" label="Denied"/> |
| 265 <int value="3" label="Ignored"/> |
| 266 </enum> |
| 267 |
| 268 <enum name="AutofillDeveloperEngagement" type="int"> |
| 269 <int value="0" label="Fillable form parsed"/> |
| 270 <int value="1" label="Includes type hints"/> |
| 271 </enum> |
| 272 |
| 273 <enum name="AutofillExperimentId" type="int"> |
| 274 <int value="0" label="No Experiment"/> |
| 275 <int value="1" label="Unknown"/> |
| 276 <int value="2" label="ar06"/> |
| 277 <int value="3" label="ar1"/> |
| 278 <int value="4" label="ar2"/> |
| 279 <int value="5" label="ar4"/> |
| 280 <int value="6" label="ar05wlr15"/> |
| 281 <int value="7" label="ar05wlr25"/> |
| 282 <int value="8" label="ar05wlr25fs5"/> |
| 283 <int value="9" label="tbar1"/> |
| 284 <int value="10" label="ar04wr3fs4"/> |
| 285 <int value="11" label="No Server Response"/> |
| 286 <int value="12" label="fp05"/> |
| 287 <int value="13" label="fp025"/> |
| 288 <int value="14" label="fp05cc03"/> |
| 289 <int value="15" label="fp05cco03"/> |
| 290 <int value="16" label="fp05cco03cstd"/> |
| 291 <int value="17" label="fp05cc03e1"/> |
| 292 </enum> |
| 293 |
| 294 <enum name="AutofillQuality" type="int"> |
| 295 <int value="0" label="Submitted"/> |
| 296 <int value="1" label="Autofilled"/> |
| 297 <int value="2" label="Autofill failed"/> |
| 298 <int value="3" label="Heuristic Unknown"/> |
| 299 <int value="4" label="Heuristic Match"/> |
| 300 <int value="5" label="Heuristic Mismatch"/> |
| 301 <int value="6" label="Server Unknown"/> |
| 302 <int value="7" label="Server Match"/> |
| 303 <int value="8" label="Server Mismatch"/> |
| 304 </enum> |
| 305 |
| 306 <enum name="AutofillQueryResult" type="int"> |
| 307 <int value="0" label="Sent"/> |
| 308 <int value="1" label="Received"/> |
| 309 <int value="2" label="Parsed"/> |
| 310 <int value="3" label="Response matches local"/> |
| 311 <int value="4" label="Response improves local (nonempty)"/> |
| 312 <int value="5" label="Response improves local (empty)"/> |
| 313 </enum> |
| 314 |
| 315 <enum name="AutofillTypeQuality" type="int"> |
| 316 <int value="0" label="Unknown"/> |
| 317 <int value="1" label="Match"/> |
| 318 <int value="2" label="Mismatch"/> |
| 319 </enum> |
| 320 |
| 321 <enum name="AutofillTypeQualityByFieldType" type="int"> |
| 322 <int value="0" label="Ambiguous, Unknown"/> |
| 323 <int value="1" label="Ambiguous, Match"/> |
| 324 <int value="2" label="Ambiguous, Mismatch"/> |
| 325 <int value="3" label="Name, Unknown"/> |
| 326 <int value="4" label="Name, Match"/> |
| 327 <int value="5" label="Name, Mismatch"/> |
| 328 <int value="6" label="Company, Unknown"/> |
| 329 <int value="7" label="Company, Match"/> |
| 330 <int value="8" label="Company, Mismatch"/> |
| 331 <int value="9" label="Addr. line 1, Unknown"/> |
| 332 <int value="10" label="Addr. line 1, Match"/> |
| 333 <int value="11" label="Addr. line 1, Mismatch"/> |
| 334 <int value="12" label="Addr. line 2, Unknown"/> |
| 335 <int value="13" label="Addr. line 2, Match"/> |
| 336 <int value="14" label="Addr. line 2, Mismatch"/> |
| 337 <int value="15" label="City, Unknown"/> |
| 338 <int value="16" label="City, Match"/> |
| 339 <int value="17" label="City, Mismatch"/> |
| 340 <int value="18" label="State, Unknown"/> |
| 341 <int value="19" label="State, Match"/> |
| 342 <int value="20" label="State, Mismatch"/> |
| 343 <int value="21" label="ZIP code, Unknown"/> |
| 344 <int value="22" label="ZIP code, Match"/> |
| 345 <int value="23" label="ZIP code, Mismatch"/> |
| 346 <int value="24" label="Country, Unknown"/> |
| 347 <int value="25" label="Country, Match"/> |
| 348 <int value="26" label="Country, Mismatch"/> |
| 349 <int value="27" label="Phone, Unknown"/> |
| 350 <int value="28" label="Phone, Match"/> |
| 351 <int value="29" label="Phone, Mismatch"/> |
| 352 <int value="30" label="Fax, Unknown"/> |
| 353 <int value="31" label="Fax, Match"/> |
| 354 <int value="32" label="Fax, Mismatch"/> |
| 355 <int value="33" label="Email, Unknown"/> |
| 356 <int value="34" label="Email, Match"/> |
| 357 <int value="35" label="Email, Mismatch"/> |
| 358 <int value="36" label="Credit card: name, Unknown"/> |
| 359 <int value="37" label="Credit card: name, Match"/> |
| 360 <int value="38" label="Credit card: name, Mismatch"/> |
| 361 <int value="39" label="Credit card: number, Unknown"/> |
| 362 <int value="40" label="Credit card: number, Match"/> |
| 363 <int value="41" label="Credit card: number, Mismatch"/> |
| 364 <int value="42" label="Credit card: date, Unknown"/> |
| 365 <int value="43" label="Credit card: date, Match"/> |
| 366 <int value="44" label="Credit card: date, Mismatch"/> |
| 367 </enum> |
| 368 |
| 369 <enum name="AutofillUserHappiness" type="int"> |
| 370 <int value="0" label="Forms loaded"/> |
| 371 <int value="1" label="Submitted fillable form, autofilled all"/> |
| 372 <int value="2" label="Submitted fillable form, autofilled some"/> |
| 373 <int value="3" label="Submitted fillable form, autofilled none"/> |
| 374 <int value="4" label="Submitted non-fillable form"/> |
| 375 <int value="5" label="User did type"/> |
| 376 <int value="6" label="Suggestions shown"/> |
| 377 <int value="7" label="Suggestions shown (once)"/> |
| 378 <int value="8" label="User did autofill"/> |
| 379 <int value="9" label="User did autofill (once)"/> |
| 380 <int value="10" label="User edited autofilled field"/> |
| 381 <int value="11" label="User edited autofilled field (once)"/> |
| 382 </enum> |
| 383 |
| 384 <enum name="BooleanAttempted" type="int"> |
| 385 <int value="0" label="Not Attempted"/> |
| 386 <int value="1" label="Attempted"/> |
| 387 </enum> |
| 388 |
| 389 <enum name="BooleanCovered" type="int"> |
| 390 <int value="0" label="Not Covered"/> |
| 391 <int value="1" label="Covered"/> |
| 392 </enum> |
| 393 |
| 394 <enum name="BooleanCredentialsLost" type="int"> |
| 395 <int value="0" label="Found Credentials"/> |
| 396 <int value="1" label="Missing Credentials"/> |
| 397 </enum> |
| 398 |
| 399 <enum name="BooleanDelete" type="int"> |
| 400 <int value="0" label="Ignored"/> |
| 401 <int value="1" label="Deleted"/> |
| 402 </enum> |
| 403 |
| 404 <enum name="BooleanDuplicate" type="int"> |
| 405 <int value="0" label="Not Duplicate"/> |
| 406 <int value="1" label="Duplicate"/> |
| 407 </enum> |
| 408 |
| 409 <enum name="BooleanEnabled" type="int"> |
| 410 <int value="0" label="Disabled"/> |
| 411 <int value="1" label="Enabled"/> |
| 412 </enum> |
| 413 |
| 414 <enum name="BooleanExpired" type="int"> |
| 415 <int value="0" label="Unexpired"/> |
| 416 <int value="1" label="Expired"/> |
| 417 </enum> |
| 418 |
| 419 <enum name="BooleanHit" type="int"> |
| 420 <int value="0" label="Not_reached"/> |
| 421 <int value="1" label="Hit"/> |
| 422 </enum> |
| 423 |
| 424 <enum name="BooleanHttps" type="int"> |
| 425 <int value="0" label="HTTP"/> |
| 426 <int value="1" label="HTTPS"/> |
| 427 </enum> |
| 428 |
| 429 <enum name="BooleanOrphan" type="int"> |
| 430 <int value="0" label="Non-orphan"/> |
| 431 <int value="1" label="Orphan"/> |
| 432 </enum> |
| 433 |
| 434 <enum name="BooleanRaced" type="int"> |
| 435 <int value="0" label="Did Not Race"/> |
| 436 <int value="1" label="Raced"/> |
| 437 </enum> |
| 438 |
| 439 <enum name="BooleanSelected" type="int"> |
| 440 <int value="0" label="No selection"/> |
| 441 <int value="1" label="Selected"/> |
| 442 </enum> |
| 443 |
| 444 <enum name="BooleanSuccess" type="int"> |
| 445 <int value="0" label="Failure"/> |
| 446 <int value="1" label="Success"/> |
| 447 </enum> |
| 448 |
| 449 <enum name="BooleanTabDiscard" type="int"> |
| 450 <int value="0" label="Memory OK, no discards"/> |
| 451 <int value="1" label="Memory low, tabs discarded"/> |
| 452 </enum> |
| 453 |
| 454 <enum name="BooleanUsage" type="int"> |
| 455 <int value="0" label="Not Used"/> |
| 456 <int value="1" label="Used"/> |
| 457 </enum> |
| 458 |
| 459 <enum name="BooleanWiped" type="int"> |
| 460 <int value="0" label="Re-enabled"/> |
| 461 <int value="1" label="Wiped out"/> |
| 462 </enum> |
| 463 |
| 464 <enum name="EnterprisePolicies" type="int"> |
| 465 <!-- Generated from ../../../chrome/app/policy/policy_templates.json --> |
| 466 |
| 467 <int value="1" label="Configure the home page URL"/> |
| 468 <int value="2" label="Use New Tab Page as homepage"/> |
| 469 <int value="3" label="Set Chrome as Default Browser"/> |
| 470 <int value="4" label="Application locale"/> |
| 471 <int value="5" label="Enable alternate error pages"/> |
| 472 <int value="6" label="Enable search suggestions"/> |
| 473 <int value="7" label="Enable network prediction"/> |
| 474 <int value="8" label="Disable SPDY protocol"/> |
| 475 <int value="9" label="Enable JavaScript"/> |
| 476 <int value="10" label="Enable Incognito mode"/> |
| 477 <int value="11" label="Disable saving browser history"/> |
| 478 <int value="12" label="Enable printing"/> |
| 479 <int value="13" label="Enable Google Cloud Print proxy"/> |
| 480 <int value="14" label="Enable Safe Browsing"/> |
| 481 <int value="15" label="Enable reporting of usage and crash-related data"/> |
| 482 <int value="16" label="Enable the password manager"/> |
| 483 <int value="17" label="Allow users to show passwords in Password Manager"/> |
| 484 <int value="18" label="Enable AutoFill"/> |
| 485 <int value="19" label="Specify a list of disabled plugins"/> |
| 486 <int value="20" label="Disable synchronization of data with Google"/> |
| 487 <int value="21" label="Choose how to specify proxy server settings"/> |
| 488 <int value="22" label="Choose how to specify proxy server settings"/> |
| 489 <int value="23" label="Address or URL of proxy server"/> |
| 490 <int value="24" label="URL to a proxy .pac file"/> |
| 491 <int value="25" label="Proxy bypass rules"/> |
| 492 <int value="26" label="Supported authentication schemes"/> |
| 493 <int value="27" |
| 494 label="Disable CNAME lookup when negotiating Kerberos authentication"/> |
| 495 <int value="28" label="Include non-standard port in Kerberos SPN"/> |
| 496 <int value="29" label="Authentication server whitelist"/> |
| 497 <int value="30" label="Kerberos delegation server whitelist"/> |
| 498 <int value="31" label="GSSAPI library name"/> |
| 499 <int value="32" label="Configure extension installation blacklist"/> |
| 500 <int value="33" label="Configure extension installation whitelist"/> |
| 501 <int value="34" label="Configure the list of force-installed extensions"/> |
| 502 <int value="35" label="Show Home button on toolbar"/> |
| 503 <int value="36" label="Disable Developer Tools"/> |
| 504 <int value="37" label="Action on startup"/> |
| 505 <int value="38" label="URLs to open on startup"/> |
| 506 <int value="39" label="Block third party cookies"/> |
| 507 <int value="40" label="Enable the default search provider"/> |
| 508 <int value="41" label="Default search provider name"/> |
| 509 <int value="42" label="Default search provider keyword"/> |
| 510 <int value="43" label="Default search provider search URL"/> |
| 511 <int value="44" label="Default search provider suggest URL"/> |
| 512 <int value="45" label="Default search provider instant URL"/> |
| 513 <int value="46" label="Default search provider icon"/> |
| 514 <int value="47" label="Default search provider encodings"/> |
| 515 <int value="48" label="Default cookies setting"/> |
| 516 <int value="49" label="Default images setting"/> |
| 517 <int value="50" label="Default JavaScript setting"/> |
| 518 <int value="51" label="Default plugins setting"/> |
| 519 <int value="52" label="Default popups setting"/> |
| 520 <int value="53" label="Default notification setting"/> |
| 521 <int value="54" label="Default geolocation setting"/> |
| 522 <int value="55" label="Disable support for 3D graphics APIs"/> |
| 523 <int value="56" label="Refresh rate for user policy"/> |
| 524 <int value="57" label="Default HTML renderer for Google Chrome Frame"/> |
| 525 <int value="58" |
| 526 label="Always render the following URL patterns in Google Chrome Frame"/> |
| 527 <int value="59" |
| 528 label="Always render the following URL patterns in the host browser"/> |
| 529 <int value="60" |
| 530 label="Allow Google Chrome Frame to handle the listed content types"/> |
| 531 <int value="61" label="Enable lock when the device become idle or suspended"/> |
| 532 <int value="62" label="Enable Instant"/> |
| 533 <int value="63" label="Set user data directory"/> |
| 534 <int value="64" label="Set download directory"/> |
| 535 <int value="65" label="Clear site data on browser shutdown (deprecated)"/> |
| 536 <int value="66" label="Specify whether the plugin finder should be disabled"/> |
| 537 <int value="67" label="Block cookies on these sites"/> |
| 538 <int value="68" label="Allow session only cookies on these sites"/> |
| 539 <int value="69" label="Allow images on these sites"/> |
| 540 <int value="70" label="Block images on these sites"/> |
| 541 <int value="71" label="Allow JavaScript on these sites"/> |
| 542 <int value="72" label="Block JavaScript on these sites"/> |
| 543 <int value="73" label="Allow plugins on these sites"/> |
| 544 <int value="74" label="Block plugins on these sites"/> |
| 545 <int value="75" label="Allow popups on these sites"/> |
| 546 <int value="76" label="Block popups on these sites"/> |
| 547 <int value="77" label="Allow cookies on these sites"/> |
| 548 <int value="78" label="Specify a list of enabled plugins"/> |
| 549 <int value="79" |
| 550 label="Specify a list of plugins that the user can enable or disable"/> |
| 551 <int value="80" label="Enable Translate"/> |
| 552 <int value="81" label="Allow running plugins that are outdated"/> |
| 553 <int value="82" label="Enable Bookmark Bar"/> |
| 554 <int value="83" label="Enables or disables bookmark editing"/> |
| 555 <int value="84" label="Allow invocation of file selection dialogs"/> |
| 556 <int value="85" label="Disable URL protocol schemes"/> |
| 557 <int value="86" label="Always runs plugins that require authorization"/> |
| 558 <int value="87" label="Set Google Chrome Frame user data directory"/> |
| 559 <int value="88" label="Set disk cache directory"/> |
| 560 <int value="89" label="Cross-origin HTTP Basic Auth prompts"/> |
| 561 <int value="90" label="Refresh rate for Device Policy"/> |
| 562 <int value="91" label="Release channel"/> |
| 563 <int value="92" |
| 564 label="Maximal number of concurrent connections to the proxy server"/> |
| 565 <int value="93" label="Incognito mode availability"/> |
| 566 <int value="94" label="Enable firewall traversal from remote access client"/> |
| 567 <int value="95" label="Enable firewall traversal from remote access host"/> |
| 568 <int value="96" |
| 569 label="Prevent app promotions from appearing on the new tab page"/> |
| 570 <int value="97" label="Import bookmarks from default browser on first run"/> |
| 571 <int value="98" |
| 572 label="Import browsing history from default browser on first run"/> |
| 573 <int value="99" label="Import of homepage from default browser on first run"/> |
| 574 <int value="100" |
| 575 label="Import search engines from default browser on first run"/> |
| 576 <int value="101" |
| 577 label="Import saved passwords from default browser on first run"/> |
| 578 <int value="102" |
| 579 label="Automatically select client certificates for these sites"/> |
| 580 <int value="103" label="Block access to a list of URLs"/> |
| 581 <int value="104" label="Allows access to a list of URLs"/> |
| 582 <int value="105" label="Allow notifications on these sites"/> |
| 583 <int value="106" label="Block notifications on these sites"/> |
| 584 <int value="107" label="User-level network configuration"/> |
| 585 <int value="108" label="Device-level network configuration"/> |
| 586 <int value="109" |
| 587 label="Enable submission of documents to Google Cloud Print"/> |
| 588 <int value="110" label="Set disk cache size in bytes"/> |
| 589 <int value="111" label="Set media disk cache size in bytes"/> |
| 590 <int value="112" label="Enterprise web store URL"/> |
| 591 <int value="113" label="Enterprise web store name"/> |
| 592 <int value="114" label="Enable TLS domain-bound certificates extension"/> |
| 593 <int value="115" label="Enable reporting memory info (JS heap size) to page"/> |
| 594 <int value="116" label="Proxy settings"/> |
| 595 <int value="117" label="Disable Print Preview"/> |
| 596 <int value="118" label="Disable SSL record splitting"/> |
| 597 <int value="119" label="Report OS and firmware version"/> |
| 598 <int value="120" label="Report device activity times"/> |
| 599 <int value="121" label="Report device boot mode"/> |
| 600 <int value="122" label="Login user white list"/> |
| 601 <int value="123" label="Allow creation of new user accounts"/> |
| 602 <int value="124" label="Enable guest mode"/> |
| 603 <int value="125" label="Show usernames on login screen"/> |
| 604 <int value="126" label="Enable data roaming"/> |
| 605 <int value="127" label="Enable metrics reporting"/> |
| 606 <int value="128" label="Wipe user data on sign-out"/> |
| 607 <int value="129" label="Whether online OCSP/CRL checks are performed"/> |
| 608 <int value="130" label="Timeout until idle user log-out is executed"/> |
| 609 <int value="131" label="Duration of the idle log-out warning message"/> |
| 610 <int value="132" |
| 611 label="Screen saver to be used on the sign-in screen in retail mode"/> |
| 612 <int value="133" |
| 613 label="Duration of inactivity before the screen saver is shown on the |
| 614 sign-in screen in retail mode"/> |
| 615 <int value="134" |
| 616 label="Whether the release channel should be configurable by the user"/> |
| 617 <int value="135" label="List of AppPack extensions"/> |
| 618 <int value="136" label="Disables Auto Update"/> |
| 619 <int value="137" label="Load specified urls on demo login"/> |
| 620 <int value="138" |
| 621 label="Continue running background apps when Google Chrome is closed"/> |
| 622 <int value="139" label="Disables Drive"/> |
| 623 <int value="140" label="Disables Google Drive over Cellular connections"/> |
| 624 <int value="141" |
| 625 label="Additional command line parameters for Google Chrome"/> |
| 626 <int value="142" label="Target Auto Update Version"/> |
| 627 <int value="143" label="Report device location"/> |
| 628 <int value="144" label="List of pinned apps to show in the launcher"/> |
| 629 <int value="145" label="Auto update scatter factor"/> |
| 630 <int value="146" label="Connection types allowed for updates"/> |
| 631 <int value="147" |
| 632 label="Restrict which users are allowed to sign in to Google Chrome"/> |
| 633 <int value="148" |
| 634 label="Configure extension, app, and user script install sources"/> |
| 635 <int value="149" label="Default mediastream setting"/> |
| 636 <int value="150" |
| 637 label="Disable proceeding from the Safe Browsing warning page"/> |
| 638 <int value="151" label="Enable or disable spell checking web service"/> |
| 639 <int value="152" label="Disable mounting of external storage"/> |
| 640 <int value="153" label="Disable taking screenshots"/> |
| 641 <int value="154" |
| 642 label="Configure the required domain name for remote access hosts"/> |
| 643 <int value="155" |
| 644 label="Enable two-factor authentication for remote access hosts"/> |
| 645 <int value="156" |
| 646 label="Configure the TalkGadget prefix for remote access hosts"/> |
| 647 <int value="157" label="Enable curtaining of remote access hosts"/> |
| 648 <int value="158" label="Timezone"/> |
| 649 <int value="159" label="Allow playing audio"/> |
| 650 <int value="160" label="Allow or deny audio capture"/> |
| 651 <int value="161" |
| 652 label="List of alternate URLs for the default search provider"/> |
| 653 <int value="162" label="Force SafeSearch"/> |
| 654 <int value="163" label="Device-local accounts"/> |
| 655 <int value="164" label="Add a logout button to the system tray"/> |
| 656 <int value="165" label="Use built-in DNS client"/> |
| 657 <int value="166" label="Control shelf auto-hiding"/> |
| 658 <int value="167" label="Allow or deny video capture"/> |
| 659 <int value="168" label="Configure allowed app/extension types"/> |
| 660 <int value="169" label="Set the display name for device-local accounts"/> |
| 661 <int value="170" label="Limit the session length"/> |
| 662 <int value="171" |
| 663 label="Parameter controlling search term placement for the default |
| 664 search provider"/> |
| 665 <int value="172" label="Screen dim delay when running on AC power"/> |
| 666 <int value="173" label="Screen off delay when running on AC power"/> |
| 667 <int value="174" label="Screen lock delay when running on AC power"/> |
| 668 <int value="175" label="Idle delay when running on AC power"/> |
| 669 <int value="176" label="Screen dim delay when running on battery power"/> |
| 670 <int value="177" label="Screen off delay when running on battery power"/> |
| 671 <int value="178" label="Screen lock delay when running on battery power"/> |
| 672 <int value="179" label="Idle delay when running on battery power"/> |
| 673 <int value="180" label="Action to take when the idle delay is reached"/> |
| 674 <int value="181" label="Action to take when the user closes the lid"/> |
| 675 <int value="182" |
| 676 label="Specify whether audio activity affects power management"/> |
| 677 <int value="183" |
| 678 label="Specify whether video activity affects power management"/> |
| 679 <int value="184" |
| 680 label="Percentage by which to scale the idle delay in presentation mode"/> |
| 681 <int value="185" |
| 682 label="Allow users to redeem offers through Chrome OS Registration."/> |
| 683 <int value="186" label="Set the Terms of Service for a device-local account"/> |
| 684 <int value="187" label="Enable deleting browser and download history"/> |
| 685 <int value="188" label="Show accessibility options in system tray menu"/> |
| 686 <int value="189" |
| 687 label="Hide the web store from the new tab page and app launcher"/> |
| 688 <int value="190" label="Allows sign in to Chrome"/> |
| 689 <int value="191" label="System wide flags to be applied on Chrome start-up"/> |
| 690 <int value="192" label="Limit device uptime by automatically rebooting"/> |
| 691 <int value="193" label="Automatically reboot after update"/> |
| 692 <int value="194" label="Public session for auto-login"/> |
| 693 <int value="195" label="Public session auto-login timer"/> |
| 694 <int value="196" |
| 695 label="Set the restriction on the fetching of the Variations seed"/> |
| 696 <int value="197" label="Idle warning delay when running on AC power"/> |
| 697 <int value="198" label="Idle warning delay when running on battery power"/> |
| 698 </enum> |
| 699 |
| 700 <enum name="ExtensionFunctions" type="int"> |
| 701 <!-- Generated from ../../../chrome/browser/extensions/extension_function_histog
ram_value.h --> |
| 702 |
| 703 <int value="0" label="UNKNOWN"/> |
| 704 <int value="1" label="WEBNAVIGATION_GETALLFRAMES"/> |
| 705 <int value="2" label="BROWSINGDATA_REMOVEWEBSQL"/> |
| 706 <int value="3" label="ALARMS_CREATE"/> |
| 707 <int value="4" label="FILEBROWSERPRIVATE_REMOVEFILEWATCH"/> |
| 708 <int value="5" label="COOKIES_GET"/> |
| 709 <int value="6" label="FONTSETTINGS_GETMINIMUMFONTSIZE"/> |
| 710 <int value="7" label="CHROMEOSINFOPRIVATE_GET"/> |
| 711 <int value="8" label="BOOKMARKMANAGERPRIVATE_CUT"/> |
| 712 <int value="9" label="TABS_CAPTUREVISIBLETAB"/> |
| 713 <int value="10" label="MANAGEMENT_SETENABLED"/> |
| 714 <int value="11" label="HISTORY_DELETEALL"/> |
| 715 <int value="12" label="STORAGE_GET"/> |
| 716 <int value="13" label="SOCKET_SETKEEPALIVE"/> |
| 717 <int value="14" label="DOWNLOADS_CANCEL"/> |
| 718 <int value="15" label="BOOKMARKS_CREATE"/> |
| 719 <int value="16" label="BOOKMARKS_UPDATE"/> |
| 720 <int value="17" label="FILEBROWSERPRIVATE_GETDRIVEFILES"/> |
| 721 <int value="18" label="TERMINALPRIVATE_ONTERMINALRESIZE"/> |
| 722 <int value="19" label="FILEBROWSERPRIVATE_REQUESTDIRECTORYREFRESH"/> |
| 723 <int value="20" label="BLUETOOTH_GETADAPTERSTATE"/> |
| 724 <int value="21" label="FILEBROWSERPRIVATE_CANCELFILETRANSFERS"/> |
| 725 <int value="22" label="FILEBROWSERPRIVATE_PINDRIVEFILE"/> |
| 726 <int value="23" label="SOCKET_WRITE"/> |
| 727 <int value="24" label="OMNIBOX_SETDEFAULTSUGGESTION"/> |
| 728 <int value="25" label="TTS_SPEAK"/> |
| 729 <int value="26" label="WALLPAPERPRIVATE_RESTOREMINIMIZEDWINDOWS"/> |
| 730 <int value="27" label="BROWSINGDATA_REMOVEHISTORY"/> |
| 731 <int value="28" label="FILEBROWSERPRIVATE_ISFULLSCREEN"/> |
| 732 <int value="29" label="AUTOTESTPRIVATE_LOGOUT"/> |
| 733 <int value="30" label="EXPERIMENTAL_HISTORY_GETMOSTVISITED"/> |
| 734 <int value="31" label="BLUETOOTH_DISCONNECT"/> |
| 735 <int value="32" label="BLUETOOTH_SETOUTOFBANDPAIRINGDATA"/> |
| 736 <int value="33" label="BOOKMARKMANAGERPRIVATE_CANPASTE"/> |
| 737 <int value="34" label="AUTOTESTPRIVATE_RESTART"/> |
| 738 <int value="35" label="USB_CLAIMINTERFACE"/> |
| 739 <int value="36" label="MEDIAPLAYERPRIVATE_SETWINDOWHEIGHT"/> |
| 740 <int value="37" label="EXPERIMENTAL_PROCESSES_GETPROCESSINFO"/> |
| 741 <int value="38" label="HISTORY_GETVISITS"/> |
| 742 <int value="39" label="SOCKET_BIND"/> |
| 743 <int value="40" label="TABS_MOVE"/> |
| 744 <int value="41" label="SOCKET_DISCONNECT"/> |
| 745 <int value="42" label="FILESYSTEM_GETWRITABLEENTRY"/> |
| 746 <int value="43" label="SYNCFILESYSTEM_REQUESTFILESYSTEM"/> |
| 747 <int value="44" label="COMMANDS_GETALL"/> |
| 748 <int value="45" label="EXPERIMENTAL_DISCOVERY_REMOVESUGGESTION"/> |
| 749 <int value="46" label="EXPERIMENTAL_INPUT_VIRTUALKEYBOARD_SENDKEYBOARDEVENT"/> |
| 750 <int value="47" label="BOOKMARKMANAGERPRIVATE_GETSUBTREE"/> |
| 751 <int value="48" label="EXPERIMENTAL_RLZ_RECORDPRODUCTEVENT"/> |
| 752 <int value="49" label="BOOKMARKS_GETRECENT"/> |
| 753 <int value="50" label="APP_CURRENTWINDOWINTERNAL_SETBOUNDS"/> |
| 754 <int value="51" label="CLOUDPRINTPRIVATE_SETUPCONNECTOR"/> |
| 755 <int value="52" label="SERIAL_SETCONTROLSIGNALS"/> |
| 756 <int value="53" label="FILEBROWSERPRIVATE_SETLASTMODIFIED"/> |
| 757 <int value="54" label="IDLE_SETDETECTIONINTERVAL"/> |
| 758 <int value="55" label="FILEBROWSERPRIVATE_GETFILETASKS"/> |
| 759 <int value="56" label="WEBSTOREPRIVATE_GETSTORELOGIN"/> |
| 760 <int value="57" label="SYSTEMPRIVATE_GETINCOGNITOMODEAVAILABILITY"/> |
| 761 <int value="58" label="EXPERIMENTAL_IDLTEST_SENDARRAYBUFFERVIEW"/> |
| 762 <int value="59" label="SOCKET_SETNODELAY"/> |
| 763 <int value="60" label="APP_CURRENTWINDOWINTERNAL_SHOW"/> |
| 764 <int value="61" label="WEBSTOREPRIVATE_GETBROWSERLOGIN"/> |
| 765 <int value="62" label="EXPERIMENTAL_IDENTITY_GETAUTHTOKEN"/> |
| 766 <int value="63" label="SYSTEMINFO_DISPLAY_GETDISPLAYINFO"/> |
| 767 <int value="64" label="BROWSINGDATA_REMOVEPLUGINDATA"/> |
| 768 <int value="65" label="SOCKET_LISTEN"/> |
| 769 <int value="66" label="MEDIAGALLERIES_GETMEDIAFILESYSTEMS"/> |
| 770 <int value="67" label="DOWNLOADS_OPEN"/> |
| 771 <int value="68" label="TABS_EXECUTESCRIPT"/> |
| 772 <int value="69" label="SYNCFILESYSTEM_GETUSAGEANDQUOTA"/> |
| 773 <int value="70" label="INPUTMETHODPRIVATE_GET"/> |
| 774 <int value="71" label="USB_CLOSEDEVICE"/> |
| 775 <int value="72" label="TTS_STOP"/> |
| 776 <int value="73" label="SERIAL_GETPORTS"/> |
| 777 <int value="74" label="FILEBROWSERPRIVATE_CLEARDRIVECACHE"/> |
| 778 <int value="75" label="SERIAL_GETCONTROLSIGNALS"/> |
| 779 <int value="76" label="DEVELOPERPRIVATE_ENABLE"/> |
| 780 <int value="77" label="FILEBROWSERPRIVATE_GETDRIVEFILEPROPERTIES"/> |
| 781 <int value="78" label="USB_FINDDEVICES"/> |
| 782 <int value="79" label="BOOKMARKMANAGERPRIVATE_DROP"/> |
| 783 <int value="80" label="FILEBROWSERPRIVATE_GETFILETRANSFERS"/> |
| 784 <int value="81" label="INPUT_IME_SETMENUITEMS"/> |
| 785 <int value="82" label="BOOKMARKS_EXPORT"/> |
| 786 <int value="83" label="HISTORY_SEARCH"/> |
| 787 <int value="84" label="TTSENGINE_SENDTTSEVENT"/> |
| 788 <int value="85" label="EXPERIMENTAL_ACCESSIBILITY_GETALERTSFORTAB"/> |
| 789 <int value="86" label="BOOKMARKS_IMPORT"/> |
| 790 <int value="87" label="SYNCFILESYSTEM_DELETEFILESYSTEM"/> |
| 791 <int value="88" label="DEBUGGER_SENDCOMMAND"/> |
| 792 <int value="89" label="DEBUGGER_DETACH"/> |
| 793 <int value="90" label="METRICSPRIVATE_RECORDSMALLCOUNT"/> |
| 794 <int value="91" label="APP_CURRENTWINDOWINTERNAL_MINIMIZE"/> |
| 795 <int value="92" label="DEVELOPERPRIVATE_AUTOUPDATE"/> |
| 796 <int value="93" label="EXPERIMENTAL_DNS_RESOLVE"/> |
| 797 <int value="94" label="EXPERIMENTAL_SYSTEMINFO_MEMORY_GET"/> |
| 798 <int value="95" label="HISTORY_ADDURL"/> |
| 799 <int value="96" label="TABS_GET"/> |
| 800 <int value="97" label="BROWSERACTION_SETBADGETEXT"/> |
| 801 <int value="98" label="TABS_RELOAD"/> |
| 802 <int value="99" label="WINDOWS_CREATE"/> |
| 803 <int value="100" label="DEVELOPERPRIVATE_LOADUNPACKED"/> |
| 804 <int value="101" label="DELETED_DOWNLOADS_SETDESTINATION"/> |
| 805 <int value="102" label="EXPERIMENTAL_PROCESSES_GETPROCESSIDFORTAB"/> |
| 806 <int value="103" label="BOOKMARKS_GETCHILDREN"/> |
| 807 <int value="104" label="BROWSERACTION_GETTITLE"/> |
| 808 <int value="105" label="TERMINALPRIVATE_OPENTERMINALPROCESS"/> |
| 809 <int value="106" label="SERIAL_CLOSE"/> |
| 810 <int value="107" label="CONTEXTMENUS_REMOVE"/> |
| 811 <int value="108" label="FILEBROWSERPRIVATE_REQUESTLOCALFILESYSTEM"/> |
| 812 <int value="109" label="ECHOPRIVATE_GETREGISTRATIONCODE"/> |
| 813 <int value="110" label="TABS_GETCURRENT"/> |
| 814 <int value="111" label="FONTSETTINGS_CLEARDEFAULTFIXEDFONTSIZE"/> |
| 815 <int value="112" label="MEDIAPLAYERPRIVATE_CLOSEWINDOW"/> |
| 816 <int value="113" label="WEBREQUESTINTERNAL_ADDEVENTLISTENER"/> |
| 817 <int value="114" label="CLOUDPRINTPRIVATE_GETPRINTERS"/> |
| 818 <int value="115" label="STORAGE_SET"/> |
| 819 <int value="116" label="FONTSETTINGS_GETDEFAULTFONTSIZE"/> |
| 820 <int value="117" label="EXTENSION_SETUPDATEURLDATA"/> |
| 821 <int value="118" label="SERIAL_WRITE"/> |
| 822 <int value="119" label="IDLE_QUERYSTATE"/> |
| 823 <int value="120" label="EXPERIMENTAL_RLZ_GETACCESSPOINTRLZ"/> |
| 824 <int value="121" label="WEBSTOREPRIVATE_SETSTORELOGIN"/> |
| 825 <int value="122" label="PAGEACTIONS_ENABLEFORTAB"/> |
| 826 <int value="123" label="COOKIES_SET"/> |
| 827 <int value="124" label="CONTENTSETTINGS_SET"/> |
| 828 <int value="125" label="CONTEXTMENUS_REMOVEALL"/> |
| 829 <int value="126" label="TABS_INSERTCSS"/> |
| 830 <int value="127" label="WEBREQUEST_HANDLERBEHAVIORCHANGED"/> |
| 831 <int value="128" label="INPUT_IME_SETCURSORPOSITION"/> |
| 832 <int value="129" label="OMNIBOX_SENDSUGGESTIONS"/> |
| 833 <int value="130" label="SYSTEMINDICATOR_ENABLE"/> |
| 834 <int value="131" label="EVENTS_GETRULES"/> |
| 835 <int value="132" label="BOOKMARKMANAGERPRIVATE_COPY"/> |
| 836 <int value="133" label="SOCKET_RECVFROM"/> |
| 837 <int value="134" label="TABS_GETALLINWINDOW"/> |
| 838 <int value="135" label="CONTEXTMENUS_UPDATE"/> |
| 839 <int value="136" label="BOOKMARKS_SEARCH"/> |
| 840 <int value="137" label="EXPERIMENTAL_APP_CLEARALLNOTIFICATIONS"/> |
| 841 <int value="138" label="BLUETOOTH_GETLOCALOUTOFBANDPAIRINGDATA"/> |
| 842 <int value="139" label="SYSTEMPRIVATE_GETUPDATESTATUS"/> |
| 843 <int value="140" label="FONTSETTINGS_CLEARMINIMUMFONTSIZE"/> |
| 844 <int value="141" label="FILEBROWSERPRIVATE_GETFILELOCATIONS"/> |
| 845 <int value="142" label="EXPERIMENTAL_DISCOVERY_SUGGEST"/> |
| 846 <int value="143" label="FILEBROWSERPRIVATE_SETDEFAULTTASK"/> |
| 847 <int value="144" label="BROWSERACTION_GETBADGETEXT"/> |
| 848 <int value="145" label="APP_CURRENTWINDOWINTERNAL_HIDE"/> |
| 849 <int value="146" label="SOCKET_CONNECT"/> |
| 850 <int value="147" label="BOOKMARKS_GETSUBTREE"/> |
| 851 <int value="148" label="HISTORY_DELETEURL"/> |
| 852 <int value="149" label="EXPERIMENTAL_MEDIAGALLERIES_ASSEMBLEMEDIAFILE"/> |
| 853 <int value="150" label="BOOKMARKMANAGERPRIVATE_STARTDRAG"/> |
| 854 <int value="151" label="BROWSINGDATA_REMOVEPASSWORDS"/> |
| 855 <int value="152" label="DOWNLOADS_DRAG"/> |
| 856 <int value="153" label="INPUT_IME_SETCOMPOSITION"/> |
| 857 <int value="154" label="METRICSPRIVATE_RECORDUSERACTION"/> |
| 858 <int value="155" label="USB_RELEASEINTERFACE"/> |
| 859 <int value="156" label="PAGEACTION_GETPOPUP"/> |
| 860 <int value="157" label="SCRIPTBADGE_GETATTENTION"/> |
| 861 <int value="158" label="FONTSETTINGS_GETFONTLIST"/> |
| 862 <int value="159" label="PERMISSIONS_CONTAINS"/> |
| 863 <int value="160" label="SCRIPTBADGE_GETPOPUP"/> |
| 864 <int value="161" label="EXPERIMENTAL_ACCESSIBILITY_GETFOCUSEDCONTROL"/> |
| 865 <int value="162" label="DEVELOPERPRIVATE_GETSTRINGS"/> |
| 866 <int value="163" label="METRICSPRIVATE_RECORDMEDIUMCOUNT"/> |
| 867 <int value="164" label="MANAGEMENT_GET"/> |
| 868 <int value="165" label="PERMISSIONS_GETALL"/> |
| 869 <int value="166" label="DOWNLOADS_SHOW"/> |
| 870 <int value="167" label="EXPERIMENTAL_RLZ_CLEARPRODUCTSTATE"/> |
| 871 <int value="168" label="TABS_REMOVE"/> |
| 872 <int value="169" label="MANAGEMENT_GETPERMISSIONWARNINGSBYID"/> |
| 873 <int value="170" label="WINDOWS_GET"/> |
| 874 <int value="171" label="FILEBROWSERPRIVATE_EXECUTETASK"/> |
| 875 <int value="172" label="TTS_GETVOICES"/> |
| 876 <int value="173" label="MANAGEMENT_GETALL"/> |
| 877 <int value="174" label="MANAGEMENT_GETPERMISSIONWARNINGSBYMANIFEST"/> |
| 878 <int value="175" label="APP_CURRENTWINDOWINTERNAL_CLEARATTENTION"/> |
| 879 <int value="176" label="AUTOTESTPRIVATE_SHUTDOWN"/> |
| 880 <int value="177" label="FONTSETTINGS_CLEARDEFAULTFONTSIZE"/> |
| 881 <int value="178" label="BOOKMARKS_GETTREE"/> |
| 882 <int value="179" label="FILEBROWSERPRIVATE_SELECTFILES"/> |
| 883 <int value="180" label="RUNTIME_GETBACKGROUNDPAGE"/> |
| 884 <int value="181" label="EXPERIMENTAL_RECORD_REPLAYURLS"/> |
| 885 <int value="182" label="WEBSTOREPRIVATE_COMPLETEINSTALL"/> |
| 886 <int value="183" label="EXPERIMENTAL_SPEECHINPUT_START"/> |
| 887 <int value="184" label="COOKIES_GETALL"/> |
| 888 <int value="185" label="DOWNLOADS_GETFILEICON"/> |
| 889 <int value="186" label="PAGEACTION_GETTITLE"/> |
| 890 <int value="187" label="BROWSINGDATA_REMOVE"/> |
| 891 <int value="188" label="SERIAL_OPEN"/> |
| 892 <int value="189" label="FILESYSTEM_GETDISPLAYPATH"/> |
| 893 <int value="190" label="FILEBROWSERPRIVATE_FORMATDEVICE"/> |
| 894 <int value="191" label="BOOKMARKS_GET"/> |
| 895 <int value="192" label="MANAGEDMODEPRIVATE_GET"/> |
| 896 <int value="193" label="ALARMS_CLEAR"/> |
| 897 <int value="194" label="SYNCFILESYSTEM_GETFILESYNCSTATUS"/> |
| 898 <int value="195" label="SOCKET_GETINFO"/> |
| 899 <int value="196" label="WEBSTOREPRIVATE_INSTALLBUNDLE"/> |
| 900 <int value="197" label="BROWSERACTION_ENABLE"/> |
| 901 <int value="198" label="METRICSPRIVATE_RECORDMEDIUMTIME"/> |
| 902 <int value="199" label="PAGEACTION_SETTITLE"/> |
| 903 <int value="200" label="CLOUDPRINTPRIVATE_GETHOSTNAME"/> |
| 904 <int value="201" label="CONTENTSETTINGS_GETRESOURCEIDENTIFIERS"/> |
| 905 <int value="202" label="SOCKET_CREATE"/> |
| 906 <int value="203" label="DEVELOPERPRIVATE_RELOAD"/> |
| 907 <int value="204" label="FILEBROWSERPRIVATE_GETMOUNTPOINTS"/> |
| 908 <int value="205" label="APP_RUNTIME_POSTINTENTRESPONSE"/> |
| 909 <int value="206" label="MANAGEDMODEPRIVATE_SETPOLICY"/> |
| 910 <int value="207" label="WEBSTOREPRIVATE_BEGININSTALLWITHMANIFEST3"/> |
| 911 <int value="208" label="WALLPAPERPRIVATE_SETWALLPAPER"/> |
| 912 <int value="209" label="USB_CONTROLTRANSFER"/> |
| 913 <int value="210" label="EXPERIMENTAL_SPEECHINPUT_STOP"/> |
| 914 <int value="211" label="USB_BULKTRANSFER"/> |
| 915 <int value="212" label="FILEBROWSERPRIVATE_GETVOLUMEMETADATA"/> |
| 916 <int value="213" label="PAGECAPTURE_SAVEASMHTML"/> |
| 917 <int value="214" label="EXTENSION_ISALLOWEDINCOGNITOACCESS"/> |
| 918 <int value="215" label="BROWSINGDATA_REMOVEAPPCACHE"/> |
| 919 <int value="216" label="APP_CURRENTWINDOWINTERNAL_DRAWATTENTION"/> |
| 920 <int value="217" label="METRICSPRIVATE_RECORDCOUNT"/> |
| 921 <int value="218" label="USB_INTERRUPTTRANSFER"/> |
| 922 <int value="219" label="TYPES_CHROMESETTING_CLEAR"/> |
| 923 <int value="220" label="INPUT_IME_COMMITTEXT"/> |
| 924 <int value="221" label="EXPERIMENTAL_IDLTEST_SENDARRAYBUFFER"/> |
| 925 <int value="222" label="WALLPAPERPRIVATE_SETWALLPAPERIFEXISTS"/> |
| 926 <int value="223" label="SOCKET_ACCEPT"/> |
| 927 <int value="224" label="WEBNAVIGATION_GETFRAME"/> |
| 928 <int value="225" label="EXPERIMENTAL_POWER_RELEASEKEEPAWAKE"/> |
| 929 <int value="226" label="APP_CURRENTWINDOWINTERNAL_SETICON"/> |
| 930 <int value="227" label="PUSHMESSAGING_GETCHANNELID"/> |
| 931 <int value="228" label="EXPERIMENTAL_INFOBARS_SHOW"/> |
| 932 <int value="229" label="INPUT_IME_SETCANDIDATEWINDOWPROPERTIES"/> |
| 933 <int value="230" label="METRICSPRIVATE_RECORDPERCENTAGE"/> |
| 934 <int value="231" label="TYPES_CHROMESETTING_GET"/> |
| 935 <int value="232" label="WINDOWS_GETLASTFOCUSED"/> |
| 936 <int value="233" label="MANAGEDMODEPRIVATE_GETPOLICY"/> |
| 937 <int value="234" label="STORAGE_CLEAR"/> |
| 938 <int value="235" label="STORAGE_GETBYTESINUSE"/> |
| 939 <int value="236" label="TABS_QUERY"/> |
| 940 <int value="237" label="PAGEACTION_SETPOPUP"/> |
| 941 <int value="238" label="DEVELOPERPRIVATE_INSPECT"/> |
| 942 <int value="239" label="DOWNLOADS_SEARCH"/> |
| 943 <int value="240" label="FONTSETTINGS_CLEARFONT"/> |
| 944 <int value="241" label="WINDOWS_UPDATE"/> |
| 945 <int value="242" label="BOOKMARKMANAGERPRIVATE_CANOPENNEWWINDOWS"/> |
| 946 <int value="243" label="SERIAL_FLUSH"/> |
| 947 <int value="244" label="BROWSERACTION_SETTITLE"/> |
| 948 <int value="245" label="BOOKMARKMANAGERPRIVATE_CANEDIT"/> |
| 949 <int value="246" label="WALLPAPERPRIVATE_SETCUSTOMWALLPAPER"/> |
| 950 <int value="247" label="BOOKMARKS_REMOVE"/> |
| 951 <int value="248" label="INPUT_IME_SETCANDIDATES"/> |
| 952 <int value="249" label="TERMINALPRIVATE_CLOSETERMINALPROCESS"/> |
| 953 <int value="250" label="HISTORY_DELETERANGE"/> |
| 954 <int value="251" label="EXPERIMENTAL_IDLTEST_GETARRAYBUFFER"/> |
| 955 <int value="252" label="TERMINALPRIVATE_SENDINPUT"/> |
| 956 <int value="253" label="TABS_HIGHLIGHT"/> |
| 957 <int value="254" label="BLUETOOTH_STARTDISCOVERY"/> |
| 958 <int value="255" label="FILEBROWSERPRIVATE_SELECTFILE"/> |
| 959 <int value="256" label="WINDOWS_GETCURRENT"/> |
| 960 <int value="257" label="DEBUGGER_ATTACH"/> |
| 961 <int value="258" label="WALLPAPERPRIVATE_SAVETHUMBNAIL"/> |
| 962 <int value="259" label="INPUT_IME_KEYEVENTHANDLED"/> |
| 963 <int value="260" label="FONTSETTINGS_SETDEFAULTFONTSIZE"/> |
| 964 <int value="261" label="RUNTIME_REQUESTUPDATECHECK"/> |
| 965 <int value="262" label="PAGEACTION_SETICON"/> |
| 966 <int value="263" label="BROWSERACTION_SETBADGEBACKGROUNDCOLOR"/> |
| 967 <int value="264" label="DEVELOPERPRIVATE_GETITEMSINFO"/> |
| 968 <int value="265" label="BLUETOOTH_STOPDISCOVERY"/> |
| 969 <int value="266" label="COOKIES_REMOVE"/> |
| 970 <int value="267" label="EXPERIMENTAL_RLZ_SENDFINANCIALPING"/> |
| 971 <int value="268" label="TABCAPTURE_GETCAPTUREDTABS"/> |
| 972 <int value="269" label="WINDOWS_REMOVE"/> |
| 973 <int value="270" label="WALLPAPERPRIVATE_GETOFFLINEWALLPAPERLIST"/> |
| 974 <int value="271" label="BROWSERACTION_GETBADGEBACKGROUNDCOLOR"/> |
| 975 <int value="272" label="PAGEACTIONS_DISABLEFORTAB"/> |
| 976 <int value="273" label="DEVELOPERPRIVATE_ALLOWFILEACCESS"/> |
| 977 <int value="274" label="FILEBROWSERPRIVATE_REMOVEMOUNT"/> |
| 978 <int value="275" label="BLUETOOTH_CONNECT"/> |
| 979 <int value="276" label="TABCAPTURE_CAPTURE"/> |
| 980 <int value="277" label="NOTIFICATIONS_CREATE"/> |
| 981 <int value="278" label="TABS_DUPLICATE"/> |
| 982 <int value="279" label="BLUETOOTH_WRITE"/> |
| 983 <int value="280" label="PAGEACTION_SHOW"/> |
| 984 <int value="281" label="WALLPAPERPRIVATE_GETTHUMBNAIL"/> |
| 985 <int value="282" label="DOWNLOADS_PAUSE"/> |
| 986 <int value="283" label="PERMISSIONS_REQUEST"/> |
| 987 <int value="284" label="TOPSITES_GET"/> |
| 988 <int value="285" label="BROWSINGDATA_REMOVEDOWNLOADS"/> |
| 989 <int value="286" label="BROWSINGDATA_REMOVELOCALSTORAGE"/> |
| 990 <int value="287" label="FILEBROWSERHANDLERINTERNAL_SELECTFILE"/> |
| 991 <int value="288" label="INPUT_IME_UPDATEMENUITEMS"/> |
| 992 <int value="289" label="FILEBROWSERPRIVATE_GETSTRINGS"/> |
| 993 <int value="290" label="CONTENTSETTINGS_GET"/> |
| 994 <int value="291" label="FONTSETTINGS_SETDEFAULTFIXEDFONTSIZE"/> |
| 995 <int value="292" label="EXPERIMENTAL_APP_NOTIFY"/> |
| 996 <int value="293" label="METRICSPRIVATE_RECORDLONGTIME"/> |
| 997 <int value="294" label="SOCKET_READ"/> |
| 998 <int value="295" label="EXPERIMENTAL_PROCESSES_TERMINATE"/> |
| 999 <int value="296" label="METRICSPRIVATE_RECORDTIME"/> |
| 1000 <int value="297" label="BOOKMARKMANAGERPRIVATE_GETSTRINGS"/> |
| 1001 <int value="298" label="USB_ISOCHRONOUSTRANSFER"/> |
| 1002 <int value="299" label="PERMISSIONS_REMOVE"/> |
| 1003 <int value="300" label="MANAGEMENT_UNINSTALL"/> |
| 1004 <int value="301" label="I18N_GETACCEPTLANGUAGES"/> |
| 1005 <int value="302" label="MANAGEMENT_LAUNCHAPP"/> |
| 1006 <int value="303" label="INPUT_IME_CLEARCOMPOSITION"/> |
| 1007 <int value="304" label="ALARMS_GETALL"/> |
| 1008 <int value="305" label="DIAL_DISCOVERNOW"/> |
| 1009 <int value="306" label="TYPES_CHROMESETTING_SET"/> |
| 1010 <int value="307" label="BROWSERACTION_SETICON"/> |
| 1011 <int value="308" label="EXPERIMENTAL_ACCESSIBILITY_SETACCESSIBILITYENABLED"/> |
| 1012 <int value="309" label="FILEBROWSERPRIVATE_VIEWFILES"/> |
| 1013 <int value="310" label="BLUETOOTH_GETSERVICES"/> |
| 1014 <int value="311" label="TABS_UPDATE"/> |
| 1015 <int value="312" label="BROWSINGDATA_REMOVEFORMDATA"/> |
| 1016 <int value="313" label="FILEBROWSERPRIVATE_RELOADDRIVE"/> |
| 1017 <int value="314" label="ALARMS_GET"/> |
| 1018 <int value="315" label="BROWSINGDATA_REMOVEINDEXEDDB"/> |
| 1019 <int value="316" label="FILEBROWSERPRIVATE_ADDFILEWATCH"/> |
| 1020 <int value="317" label="CONTENTSETTINGS_CLEAR"/> |
| 1021 <int value="318" label="FILEBROWSERPRIVATE_GETPREFERENCES"/> |
| 1022 <int value="319" label="BOOKMARKMANAGERPRIVATE_PASTE"/> |
| 1023 <int value="320" label="FILESYSTEM_ISWRITABLEENTRY"/> |
| 1024 <int value="321" label="USB_SETINTERFACEALTERNATESETTING"/> |
| 1025 <int value="322" label="FONTSETTINGS_SETMINIMUMFONTSIZE"/> |
| 1026 <int value="323" label="BROWSERACTION_GETPOPUP"/> |
| 1027 <int value="324" label="SOCKET_DESTROY"/> |
| 1028 <int value="325" label="BLUETOOTH_GETDEVICES"/> |
| 1029 <int value="326" label="ALARMS_CLEARALL"/> |
| 1030 <int value="327" label="FONTSETTINGS_GETDEFAULTFIXEDFONTSIZE"/> |
| 1031 <int value="328" label="FILEBROWSERPRIVATE_ZIPSELECTION"/> |
| 1032 <int value="329" label="SYSTEMINDICATOR_DISABLE"/> |
| 1033 <int value="330" label="SCRIPTBADGE_SETPOPUP"/> |
| 1034 <int value="331" label="EXTENSION_ISALLOWEDFILESCHEMEACCESS"/> |
| 1035 <int value="332" label="EXPERIMENTAL_IDENTITY_LAUNCHWEBAUTHFLOW"/> |
| 1036 <int value="333" label="FILEBROWSERPRIVATE_GETDRIVECONNECTIONSTATE"/> |
| 1037 <int value="334" label="TABS_DETECTLANGUAGE"/> |
| 1038 <int value="335" label="METRICSPRIVATE_RECORDVALUE"/> |
| 1039 <int value="336" label="BOOKMARKMANAGERPRIVATE_SORTCHILDREN"/> |
| 1040 <int value="337" label="SERIAL_READ"/> |
| 1041 <int value="338" label="APP_CURRENTWINDOWINTERNAL_MAXIMIZE"/> |
| 1042 <int value="339" label="EXPERIMENTAL_DISCOVERY_CLEARALLSUGGESTIONS"/> |
| 1043 <int value="340" label="MANAGEDMODEPRIVATE_ENTER"/> |
| 1044 <int value="341" label="FILEBROWSERPRIVATE_TRANSFERFILE"/> |
| 1045 <int value="342" label="BROWSERACTION_SETPOPUP"/> |
| 1046 <int value="343" label="TABS_GETSELECTED"/> |
| 1047 <int value="344" label="FONTSETTINGS_GETFONT"/> |
| 1048 <int value="345" label="BLUETOOTH_READ"/> |
| 1049 <int value="346" label="WEBREQUESTINTERNAL_EVENTHANDLED"/> |
| 1050 <int value="347" label="EVENTS_ADDRULES"/> |
| 1051 <int value="348" label="CONTEXTMENUS_CREATE"/> |
| 1052 <int value="349" label="MEDIAPLAYERPRIVATE_GETPLAYLIST"/> |
| 1053 <int value="350" label="DOWNLOADS_ERASE"/> |
| 1054 <int value="351" label="EXPERIMENTAL_RECORD_CAPTUREURLS"/> |
| 1055 <int value="352" label="TTS_ISSPEAKING"/> |
| 1056 <int value="353" label="BOOKMARKS_REMOVETREE"/> |
| 1057 <int value="354" label="FILEBROWSERPRIVATE_SEARCHDRIVE"/> |
| 1058 <int value="355" label="EXPERIMENTAL_SYSTEMINFO_CPU_GET"/> |
| 1059 <int value="356" label="FILEBROWSERPRIVATE_SETPREFERENCES"/> |
| 1060 <int value="357" label="FONTSETTINGS_SETFONT"/> |
| 1061 <int value="358" label="SOCKET_GETNETWORKLIST"/> |
| 1062 <int value="359" label="BOOKMARKS_MOVE"/> |
| 1063 <int value="360" label="WALLPAPERPRIVATE_MINIMIZEINACTIVEWINDOWS"/> |
| 1064 <int value="361" label="STORAGE_REMOVE"/> |
| 1065 <int value="362" label="AUTOTESTPRIVATE_LOGINSTATUS"/> |
| 1066 <int value="363" label="TABS_CREATE"/> |
| 1067 <int value="364" label="FILEBROWSERPRIVATE_CANCELDIALOG"/> |
| 1068 <int value="365" label="BROWSINGDATA_REMOVECOOKIES"/> |
| 1069 <int value="366" label="FILESYSTEM_CHOOSEENTRY"/> |
| 1070 <int value="367" label="MEDIAPLAYERPRIVATE_PLAY"/> |
| 1071 <int value="368" label="WEBSTOREPRIVATE_GETWEBGLSTATUS"/> |
| 1072 <int value="369" label="SOCKET_SENDTO"/> |
| 1073 <int value="370" label="BROWSINGDATA_REMOVEFILESYSTEMS"/> |
| 1074 <int value="371" label="WALLPAPERPRIVATE_GETSTRINGS"/> |
| 1075 <int value="372" label="BROWSINGDATA_REMOVECACHE"/> |
| 1076 <int value="373" label="BOOKMARKMANAGERPRIVATE_RECORDLAUNCH"/> |
| 1077 <int value="374" label="BROWSERACTION_DISABLE"/> |
| 1078 <int value="375" label="EXPERIMENTAL_SPEECHINPUT_ISRECORDING"/> |
| 1079 <int value="376" label="APP_WINDOW_CREATE"/> |
| 1080 <int value="377" label="RUNTIME_RELOAD"/> |
| 1081 <int value="378" label="EXPERIMENTAL_POWER_REQUESTKEEPAWAKE"/> |
| 1082 <int value="379" label="SYSTEMINDICATOR_SETICON"/> |
| 1083 <int value="380" label="FILEBROWSERPRIVATE_ADDMOUNT"/> |
| 1084 <int value="381" label="APP_CURRENTWINDOWINTERNAL_FOCUS"/> |
| 1085 <int value="382" label="EVENTS_REMOVERULES"/> |
| 1086 <int value="383" label="DOWNLOADS_DOWNLOAD"/> |
| 1087 <int value="384" label="WINDOWS_GETALL"/> |
| 1088 <int value="385" label="FILEBROWSERPRIVATE_TOGGLEFULLSCREEN"/> |
| 1089 <int value="386" label="APP_CURRENTWINDOWINTERNAL_RESTORE"/> |
| 1090 <int value="387" label="WEBSOCKETPROXYPRIVATE_GETPASSPORTFORTCP"/> |
| 1091 <int value="388" label="PAGEACTION_HIDE"/> |
| 1092 <int value="389" label="EXPERIMENTAL_SYSTEMINFO_STORAGE_GET"/> |
| 1093 <int value="390" label="DOWNLOADS_ACCEPTDANGER"/> |
| 1094 <int value="391" label="WEBSOCKETPROXYPRIVATE_GETURLFORTCP"/> |
| 1095 <int value="392" label="FILEBROWSERPRIVATE_GETSIZESTATS"/> |
| 1096 <int value="393" label="DOWNLOADS_RESUME"/> |
| 1097 <int value="394" label="COOKIES_GETALLCOOKIESTORES"/> |
| 1098 <int value="395" label="MEDIAGALLERIESPRIVATE_ADDGALLERYWATCH"/> |
| 1099 <int value="396" label="MEDIAGALLERIESPRIVATE_REMOVEGALLERYWATCH"/> |
| 1100 <int value="397" label="WEBVIEW_EXECUTESCRIPT"/> |
| 1101 <int value="398" label="NOTIFICATIONS_UPDATE"/> |
| 1102 <int value="399" label="NOTIFICATIONS_CLEAR"/> |
| 1103 <int value="400" label="SESSIONRESTORE_GETRECENTLYCLOSED"/> |
| 1104 <int value="401" label="SESSIONRESTORE_RESTORE"/> |
| 1105 <int value="402" label="MANAGEMENT_UNINSTALLSELF"/> |
| 1106 <int value="403" label="ECHOPRIVATE_GETOOBETIMESTAMP"/> |
| 1107 <int value="404" label="FILEBROWSERPRIVATE_VALIDATEPATHNAMELENGTH"/> |
| 1108 <int value="405" label="BROWSINGDATA_SETTINGS"/> |
| 1109 <int value="406" label="WEBSTOREPRIVATE_GETISLAUNCHERENABLED"/> |
| 1110 <int value="407" label="NETWORKINGPRIVATE_GETPROPERTIES"/> |
| 1111 <int value="408" label="NETWORKINGPRIVATE_GETVISIBLENETWORKS"/> |
| 1112 <int value="409" label="NETWORKINGPRIVATE_STARTCONNECT"/> |
| 1113 <int value="410" label="NETWORKINGPRIVATE_STARTDISCONNECT"/> |
| 1114 <int value="411" label="MEDIAGALLERIESPRIVATE_GETALLGALLERYWATCH"/> |
| 1115 <int value="412" label="MEDIAGALLERIESPRIVATE_REMOVEALLGALLERYWATCH"/> |
| 1116 <int value="413" label="FILEBROWSERPRIVATE_SEARCHDRIVEMETADATA"/> |
| 1117 <int value="414" label="ECHOPRIVATE_CHECKALLOWREDEEMOFFERS"/> |
| 1118 <int value="415" label="MEDIAGALLERIESPRIVATE_EJECTDEVICE"/> |
| 1119 <int value="416" label="FILEBROWSERPRIVATE_LOGOUTUSER"/> |
| 1120 <int value="417" label="DEVELOPERPRIVATE_CHOOSEPATH"/> |
| 1121 <int value="418" label="DEVELOPERPRIVATE_PACKDIRECTORY"/> |
| 1122 <int value="419" label="NETWORKINGPRIVATE_VERIFYDESTINATION"/> |
| 1123 <int value="420" label="NETWORKINGPRIVATE_VERIFYANDENCRYPTCREDENTIALS"/> |
| 1124 <int value="421" label="NETWORKINGPRIVATE_VERIFYANDENCRYPTDATA"/> |
| 1125 <int value="422" label="DEVELOPERPRIVATE_RESTART"/> |
| 1126 <int value="423" label="DEVELOPERPRIVATE_ALLOWINCOGNITO"/> |
| 1127 <int value="424" label="INPUT_IME_DELETESURROUNDINGTEXT"/> |
| 1128 <int value="425" label="FILEBROWSERPRIVATE_OPENNEWWINDOW"/> |
| 1129 <int value="426" label="CLOUDPRINTPRIVATE_GETCLIENTID"/> |
| 1130 <int value="427" label="ECHOPRIVATE_GETUSERCONSENT"/> |
| 1131 <int value="428" label="SYNCFILESYSTEM_SETCONFLICTRESOLUTIONPOLICY"/> |
| 1132 <int value="429" label="SYNCFILESYSTEM_GETCONFLICTRESOLUTIONPOLICY"/> |
| 1133 <int value="430" label="NETWORKINGPRIVATE_SETPROPERTIES"/> |
| 1134 <int value="431" label="NETWORKINGPRIVATE_GETSTATE"/> |
| 1135 <int value="432" label="POWER_REQUESTKEEPAWAKE"/> |
| 1136 <int value="433" label="POWER_RELEASEKEEPAWAKE"/> |
| 1137 <int value="434" label="WALLPAPERPRIVATE_SETCUSTOMWALLPAPERLAYOUT"/> |
| 1138 <int value="435" label="DOWNLOADSINTERNAL_DETERMINEFILENAME"/> |
| 1139 <int value="436" label="SYNCFILESYSTEM_GETFILESYNCSTATUSES"/> |
| 1140 <int value="437" label="MEDIAGALLERIESPRIVATE_GETHANDLERS"/> |
| 1141 <int value="438" label="WALLPAPERPRIVATE_RESETWALLPAPER"/> |
| 1142 </enum> |
| 1143 |
| 1144 </enums> |
| 1145 |
| 1146 <!-- Field trials --> |
| 1147 |
| 1148 <fieldtrials> |
| 1149 |
| 1150 <fieldtrial name="AutofillServerExperiments"> |
| 1151 <group name="ar06" label="Acceptance ratio: 0.6"/> |
| 1152 <group name="ar1" label="Acceptance ratio: 1.0"/> |
| 1153 <group name="ar2" label="Acceptance ratio: 2.0"/> |
| 1154 <group name="ar4" label="Acceptance ratio: 4.0"/> |
| 1155 <group name="ar04wr3fs4" |
| 1156 label="Acceptance ratio: 0.4; winner lead ratio: 3.0; min form score: 4"/> |
| 1157 <group name="ar05wlr15" |
| 1158 label="Acceptance ratio: 0.5; winner lead ratio: 1.5"/> |
| 1159 <group name="ar05wlr25" |
| 1160 label="Acceptance ratio: 0.5; winner lead ratio: 2.5"/> |
| 1161 <group name="ar05wr15fs5" |
| 1162 label="Acceptance ratio: 0.5; winner lead ratio: 1.5; min form score: 5"/> |
| 1163 <group name="fp05" label="Probability picker algorithm, p=0.5"/> |
| 1164 <group name="fp025" label="Probability picker algorithm, p=0.25"/> |
| 1165 <group name="fp05cc03" |
| 1166 label="Probability picker algorithm, p=0.5; p_ccname=0.3"/> |
| 1167 <group name="fp05cco03" |
| 1168 label="Probability picker algorithm, p=0.5; |
| 1169 p_ccname_given_other_cc_fields=0.3"/> |
| 1170 <group name="fp05cco03cstd" |
| 1171 label="Probability picker algorithm, p=0.5; |
| 1172 p_ccname_given_other_cc_fields=0.3; with fallback to the default |
| 1173 algorithm"/> |
| 1174 <group name="fp05cc03e1" |
| 1175 label="Probability picker algorithm, p=0.5 for cc and company name |
| 1176 fields; p_ccname_given_other_cc_fields=0.3; with fallback to the |
| 1177 default algorithm;"/> |
| 1178 <group name="tbar1" label="Use only Toolbar upload data"/> |
| 1179 <affected-histogram name="Autofill.Quality"/> |
| 1180 <affected-histogram name="AutoFill.Quality"/> |
| 1181 <affected-histogram name="Autofill.Quality.HeuristicType"/> |
| 1182 <affected-histogram name="Autofill.Quality.HeuristicType.ByFieldType"/> |
| 1183 <affected-histogram name="Autofill.Quality.PredictedType"/> |
| 1184 <affected-histogram name="Autofill.Quality.PredictedType.ByFieldType"/> |
| 1185 <affected-histogram name="Autofill.Quality.ServerType"/> |
| 1186 <affected-histogram name="Autofill.Quality.ServerType.ByFieldType"/> |
| 1187 </fieldtrial> |
| 1188 |
| 1189 </fieldtrials> |
| 1190 |
| 1191 </histogram-configuration> |
| OLD | NEW |