summarylogtreecommitdiffstats
path: root/trigger.txt
blob: 6d8bb16aba197722347d381a5e26bc6b7d5a7058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
ChromeMain
__stack_chk_fail
GLIBC_2.4
--
CHROME_USER_DATA_DIR
process type 'renderer' 
should be created through the zygote.
--
Chrome OS panel fitting is only supported for Intel IVB and SNB Graphics Controllers
NVidia driver 8.15.11.8593 is crashy on Windows
Hardware video decode is only supported in win7+
--
Chrome input
Failed to connect to the context.  Error: 
application.icon_name
--
chrome://gpu/MusContextFactory
EstablishGpuChannel
../../chromium/services/ui/public/cpp/gpu/gpu.cc
--
chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/success.html
NONE
INVALID_GAIA_CREDENTIALS
--
chrome-extension
chrome-native
chrome-search
basic_string::assign
basic_string::at
--
chrome://md-settings/*
chrome://settings/*
chrome://settings-frame/*
automation
manifest:automation
--
chrome://bluetooth-pairing/*
bluetoothLowEnergy
bluetoothPrivate
--
chrome://bookmarks/*
bookmarks
permission:bookmarks
--
chromeWebViewInternal
permission:webview
chrome://chrome-signin/*
chrome://media-router/*
chrome://oobe/*
chromeosInfoPrivate
permission:chromeosInfoPrivate
chrome://version/*
clipboard
permission:clipboard
--
chrome://extensions/*
chrome://extensions-frame/*
chrome://chrome/extensions/*
devtoolsPrivate
permission:devtoolsPrivate
--
chrome://cast/*
extensionsManifestTypes
feedbackPrivate
--
chrome://network/*
notes
permission:notes
--
chrome://print/*
rtcPrivate
permission:rtcPrivate
--
chrome_settings_overrides
chrome_ui_overrides
CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2
chrome_url_overrides
content_capabilities
950D13BB9B4794F4CA2A68D3597E5DFAA47C88AE
--
chromePrivate
2462D64ACB971A7E708757159C2B17761D4FF54A
3010EF507AFEF487EEA9CDE2930EC94867C60936
--
chrometrace.log
InitStartupTracingForDuration
SetupSandbox
--
Chrome_UIThread
Chrome_DBThread
Chrome_FileThread
Chrome_FileUserBlockingThread
Chrome_ProcessLauncherThread
Chrome_CacheThread
Chrome_IOThread
BrowserBlocking
Not supported for insecure origins.
--
chrome
vivaldi
FileSystem.OriginFailedCanCommitURL
--
Chrome%x
gboolean content::browser_accessibility_do_action(AtkAction *, gint)
ATK_IS_ACTION(atk_action)
--
chrome://gpu/GpuProcessTransportFactory::CreateContextCommon
GpuVSyncBeginFrameSource::OnVSync
latency
--
chrome.google.com
/webstore
main_frame
--
chrome/browser/media/router/mojo/media_controller.mojom
chrome/browser/media/router/mojo/media_router.mojom
chrome/browser/media/router/mojo/media_status.mojom
media_router_bindings
mojo/common/time.mojom
--
Chrome_InProcUtilityThread
../../chromium/content/utility/in_process_utility_thread.cc
CrUtilityMain
--
chrome-extension://enhhojjnijigcajfphajepfemndkmdlo/
chrome-extension://pkedcjkdefgpdelpbcmbmeomcjbeemfm/
../../chromium/chrome/browser/media/webrtc/media_capture_devices_dispatcher.cc
OnMediaRequestStateChanged
--
chrome-omni
chrome-ext-ansg
 (Official)
sessions::TabRestoreService
--
ChromeSigninClient
GaiaCookieManagerService
PasswordHash.CreateTime
--
chrome-extension://gfdkimpbcpahaombhbimeihdjnejgicl/
mppnpdlheglhdfmldimlhpnegondlapf
jokbpnebhdcladagohdnfgjcpejggllo
--
Chrome_Linux
1.10.856.16
BREAKPAD_DUMP_LOCATION
--
CHROME_WRAPPER
TtsPlatformImplLinux
../../chromium/chrome/browser/speech/tts_linux.cc
--
chrome_libsecret_password_schema
ScheduleNextFamilyInfoUpdate
../../chromium/chrome/browser/supervised_user/child_accounts/child_account_service.cc
--
Chrome version: 
Linux distribution: 
Cpu: 
--
ChromeDataUseAscriberService
DomDistillerService
Articles
--
chrome_prefs::CreateProfilePrefs
PrefService.ReadError
HandleReadError
--
ChromeRegistryHashStoreValidationSeed
NoStatePrefetch
PrerenderFromOmnibox
--
chrome://theme/IDR_PROFILE_AVATAR_PLACEHOLDER_LARGE
avatar_generic.png
avatar_generic_aqua.png
--
chrome-search://host/
{{ORIGIN}}
../../chromium/chrome/browser/sessions/session_data_deleter.cc
--
chrome_signin_client
../../chromium/chrome/browser/signin/chrome_signin_client.cc
../../chromium/chrome/browser/ssl/cert_report_helper.cc
--
ChromeSSLHostStateDelegate
ssl_name_mismatch_lookup
ssl_overridable
--
chrome://extension-crash
Extensions.BackgroundContentsServiceStartupTime
ScheduleCloseBalloon
--
Chrome version test
SQLiteIntegrityAppCache
Application cache database
--
ChromeBrowserMainParts::SetupFieldTrials
SettingsEnforcement
ChromeBrowserMainParts::SetupMetrics
ChromeBrowserMainParts::StartMetricsRecording
ChromeBrowserMainParts::PreEarlyInitialization
ChromeBrowserMainParts::PostEarlyInitialization
ChromeBrowserMainParts::ToolkitInitialized
ChromeBrowserMainParts::PreMainMessageLoopStart
ChromeBrowserMainParts::PostMainMessageLoopStart
ChromeBrowserMainParts::PreCreateThreads
ChromeBrowserMainParts::PreCreateThreadsImpl
ChromeBrowserMainParts::PreCreateThreadsImpl:InitBrowswerProcessImpl
ChromeBrowserMainParts::PreCreateThreadsImpl:InitProfiling
ChromeBrowserMainParts::PreCreateThreadsImpl:ConvertFlags
ChromeBrowserMainParts::PreCreateThreadsImpl:InitResourceBundle
ChromeBrowserMainParts::PreCreateThreadsImpl:AddDataPack
ChromeBrowserMainParts::PreMainMessageLoopRun
ChromeBrowserMainParts::PreProfileInit
ChromeBrowserMainParts::PostProfileInit
ChromeBrowserMainParts::PreBrowserStart
ChromeBrowserMainParts::PostBrowserStart
../../chromium/chrome/browser/chrome_browser_main.cc
ChromeBrowserMainParts::PreMainMessageLoopRunImpl
LightSpeed
EarlyInitStartup
--
Chrome.ProcessSingleton.NotifyResult
Failed to create a ProcessSingleton for your profile directory. This means that running multiple instances would start multiple browser processes rather than opening a new window in the existing process. Aborting now to avoid profile corruption.
Startup.PreMainMessageLoopRunImplStep1Time
--
ChromeBrowserMainParts::PostMainMessageLoopRun
Startup.WarmStartTimeFromRemoteProcessStartFast
Startup.WarmStartTimeFromRemoteProcessStart
ChromeBrowserMainParts::InitializeLocalState
ChromeBrowserMainParts::CreateProfile
Error creating primary profile.
Startup.CreateFirstProfile
--
ChromeBrowserMainParts::MainMessageLoopRun
../../chromium/chrome/browser/component_updater/ev_whitelist_component_installer.cc
Entering EVWhitelistComponentInstallerTraits::OnCustomInstall.
--
ChromeFallbackIconClient
Vivaldi
InstanceIDProfileService
--
chrome::RegisterProfilePrefs
Settings.RegisterProfilePrefsTime
DeleteWebRTCIdentityStoreDB
--
Chrome
BackgroundApplicationListModel
../../chromium/chrome/browser/background/background_application_list_model.cc
--
Chrome.ProcessSingleton.TimeToNotify
Chrome.ProcessSingleton.TimeToFailure
Chrome.ProcessSingleton.TimeToCreate
%s%c%u
Failed to create socket directory.
--
chrome-guest://chrome-signin/?
../../chromium/chrome/browser/task_manager/sampling/task_manager_impl.cc
virtual base::Time task_manager::TaskManagerImpl::GetStartTime(task_manager::TaskId) const
--
ChromeResourceDispatcherHostDelegate
../../chromium/chrome/browser/loader/chrome_resource_dispatcher_host_delegate.cc
ExperimentDisable
--
Chrome.CommandLineDatDirCount
Chrome.CommandLineAppModeCount
Chrome.CommandLineFlagCount
Chrome.CommandLineUncommonFlagCount
send_unreported_metrics
RegisterOrRemovePreviousRunMetricsFile
--
CHROME_VERSION_EXTRA
preview
stable
--
chrome_debug.log
_%02d%02d%02d-%02d%02d%02d
[%03d:%03d] %s
--
Chrome_SamplingProfilerThread
RunCallbackAndDeleteInstance
../../chromium/base/profiler/stack_sampling_profiler.cc
--
CHROME_EXTENSION_ABORTED_REQUEST
CHROME_EXTENSION_REDIRECTED_REQUEST
CHROME_EXTENSION_MODIFIED_HEADERS
CHROME_EXTENSION_IGNORED_DUE_TO_CONFLICT
CHROME_EXTENSION_PROVIDE_AUTH_CREDENTIALS
CHROME_POLICY_ABORTED_REQUEST
CERT_VERIFIER_REQUEST
CERT_VERIFIER_JOB
--
chrome@example.com
../../chromium/net/ftp/ftp_network_transaction.cc
Unexpected value of command_sent_: 
--
ChromePasswordManagerClient::WasLastNavigationHTTPError
HTTP status code for landing page
Provisionally saved form is not HTML
--
chromeChannel
containerLiveRelevant
containerLiveStatus
--
Chrome (input)
snd_seq_set_client_name fails: 
Chrome (output)
snd_seq_create_simple_port fails: 
snd_seq_subscribe_port on the announce port fails: 
--
CHROME_DEVEL_SANDBOX
LD_AOUT_LIBRARY_PATH
LD_AOUT_PRELOAD
--
Chrome/
59.0.3071.51
cfe7728a35b9eb58a01a06673e0ec7d1737c243c
--
ChromeMethodOnly: (\d+)
ChromeMethodBFE: (\d+)::.*::(\d+)
missing files
log record too small
--
Chrome_SyncThread
Sync.ClearServerDataEvents
OnPassphraseRequired
--
Chrome 
 channel(
../../chromium/components/sync/driver/sync_util.cc
--
chrome_version
signin_scoped_device_id
key_name
--
chrome_avatar
chromeos_avatar
password_signature_key
password_encryption_key
--
Chrome.Browser.CrashedExecutionPhase
OpenNewLog
../../chromium/components/metrics/metrics_service.cc
--
Chrome.UmaPageloadCounter
CrashExitCodes.Extension
CrashExitCodes.Renderer
--
chrome-string_to_get_empty_result
_chrome_dummy_schema
_chrome_dummy_schema_for_unlocking
--
Chrome Safe Storage Control
The meaning of life
Dummy store to unlock the default keyring failed: 
--
chrome_libsecret_os_crypt_password_v2
OSCrypt found more than one encryption keys.
chrome_libsecret_os_crypt_password
.value
.time
--
Chrome Version
Account Consistency?
Signin Status
--
Chrome_HistoryThread
RunWithFaviconResults
NotifyProfileError
--
CHROME_HISTORY
min_timestamp_usec
max_timestamp_usec
--
chrome_internal
installed_notification
new_note
--
chrome_update
shared_module_update
app_update
--
chrome://
'unsafe-eval'
chrome-extension-resource:
googleapis.com
'sha256-
--
Chromeschnozzle
superman@example.com
learnMoreLinkTitle
--
chromebookAddedNotificationTitle
chromebookAddedNotificationMessage
chromebookAddedNotificationAboutButton
phoneChangedNotificationLearnMoreButton
phoneChangedNotificationTitle
--
chrome.easyUnlockPrivate.getPermitAccess:
  id: 
permit://google.com/easyunlock/v1/
--
chrome.easyUnlockPrivate.getRemoteDevices.
Expecting 
 devices.
--
ChromeDirectSettingAPI
easy_unlock.proximity_required
../../chromium/chrome/browser/extensions/api/preference/preference_api.cc
--
chrome_app/product_logo_128.png
chrome_app/product_logo_16.png
EnforceStrict
Enforce
--
Chrome Canary
com.chrome.dev
Chrome Dev
com.chrome.beta
Chrome Beta
com.android.chrome
com.chrome.work
--
chromeWebViewInternal.contextMenusCreate
chromeWebViewInternal.contextMenusUpdate
chromeWebViewInternal.contextMenusRemove
chromeWebViewInternal.contextMenusRemoveAll
chromeWebViewInternal.showContextMenu
commandLinePrivate.hasSwitch
brailleDisplayPrivate.getDisplayState
--
chrome-sync
bogus
chromiumsync
--
chromeos
freebsd
solaris
--
chrome_feedback_report_app
No connection to server.
Client error: HTTP response code 
--
chrome_intelligence.RankerModelMetadata
chrome_intelligence.RankerModelProto
gen/components/translate/core/browser/proto/translate_ranker_model.pb.cc
chrome_intelligence.TranslateRankerModel.LogisticRegressionModel
chrome_intelligence.TranslateRankerModel
../../chromium/third_party/protobuf/src/google/protobuf/map_entry_lite.h
CHECK failed: default_instance_ != NULL: 
--
chrome_browser_ssl.CaptivePortalCert
chrome_browser_ssl.SSLErrorAssistantConfig
../../chromium/chrome/browser/ui/chrome_select_file_policy.cc
File-selection dialogs are disabled but no WebContents 
--
chrome/browser/engagement/site_engagement_details.mojom
reset_ofbh
collapseSessionMenuItemText
--
chrome-net-export-log.json
dataReductionProxyInfo
historicNetworkStats
--
chrome/browser/ui/webui/omnibox/omnibox.mojom
notifyAboutIncognito
reset_fre
--
chromeForWork
statusDevice
statusUser
--
chromePolicyNames
policyNames
extensionPolicyNames
--
chromePolicies
extensionPolicies
policy.Page.setPolicyValues
--
chrome.signin.getSigninInfo.handleReply
ChromiumSignInInternalsUI
422460 SignInInternalsUI::OnSigninStateChanged
--
chrome.signin.onSigninInfoChanged.fire
chrome.signin.onCookieAccountsFetched.fire
signin_internals.js
supervised_user_internals.js
--
chrome/browser/ui/webui/usb_internals/usb_internals.mojom
user_actions.css
user_actions.js
--
chrome is already running; you must close all running 
instances before running with the --
 flag
--
chrome-devtools://devtools/
devtools_hard_coded_data_source
devtools_free_data_source
--
chrome://extensions?id=%s
StartTimerIfNecessary
../../chromium/chrome/browser/ui/views/location_bar/zoom_bubble_view.cc
--
chrome.invalidations.updateHandlers
chrome.invalidations.updateInvalidatorState
chrome.invalidations.updateIds
chrome.invalidations.logInvalidations
chrome.invalidations.updateDetailedStatus
requestAutocompleteActionPredictorDb
requestResourcePrefetchPredictorDb
--
Chrome version
Child detection enabled
Account
--
chrome.supervised_user_internals.receiveBasicInfo
chrome.supervised_user_internals.receiveUserSettings
allowResult
whitelists
chrome.supervised_user_internals.receiveTryURLResult
chrome.supervised_user_internals.receiveFilteringResult
stat_name
stat_value
--
chrome://fileicon/
BookmarkBar_ContextMenu_OpenAll
BookmarkBar_ContextMenu_OpenAllInNewWindow
--
chromecast.com
chromeexperiments.com
chromestatus.com
chromium.org
cloudendpointsapis.com
--
Chrome OS
Chrome OS (owner only)
../../chromium/components/flags_ui/pref_service_flags_storage.cc
~VisitedLinkMaster
--
chrome://newtab/
chrome-native://newtab/
chrome://bookmarks/
NTPArticleSuggestions
NTPBookmarkSuggestions
--
ChromeFilenameClientIncident.store
IpMalware.store
UrlCsdDownloadWhitelist.store
--
ChromeExtMalware.store
ChromeUrlClientIncident.store
UrlSubresourceFilter.store
../../chromium/components/safe_browsing_db/v4_database.cc
--
chrome_app_indicator2_%s
SetImageFromFile
libappindicator3.so
--
Chrome_CloudPrintProxyCoreThread
InitializeWithToken
../../chromium/chrome/service/cloud_print/cloud_print_proxy_backend.cc
--
Chrome Service %s(%s)%s %s 
../../chromium/chrome/service/service_ipc_server.cc
Unable to open service ipc channel
--
Chrome_CloudPrintJobPrintThread
../../chromium/chrome/service/cloud_print/printer_job_handler.cc
CP_CONNECTOR: Checking for jobs
--
Chrome_ChildIOThread
../../chromium/content/child/child_process.cc
) paused waiting for debugger to attach. 
--
chromeRenderToAssociatedSink
hotwordEnabled
googEchoCancellation
--
chrome-proxy-content-transform
empty-image
chrome-proxy
q=low
ImageResourceContent::updateImage
--
Chrome_InProcGpuThread
../../chromium/content/gpu/in_process_gpu_thread.cc
../../chromium/content/gpu/gpu_child_thread.cc
--
ChromeRenderFrameObserver::CapturePageText
OnRequestComplete
../../chromium/chrome/renderer/chrome_render_thread_observer.cc
--
chrome-search://%s/
chrome-search://%s/%s%s
large-icon
fallback-icon
--
chrome-search://thumb2/%s?fb=%s
chrome-search://thumb/%d/%d
<html><meta charset='UTF-8'><body style='background-color:#990000;color:white;'>%s</body></html>
content-type: 
--
ChromeSetting
ContentSetting
ChromeDirectSetting
fileEntryBindingUtil
chromeWebView
GetMediaFileSystemObject
GetNotificationImageSizes
--
Chrome_InProcRendererThread
../../chromium/content/renderer/render_frame_impl.cc
Intentionally crashing (with bad cast)
--
chrome://gpu/RenderThreadImpl::CreateOffscreenContext/
Event.RenderView.DiscardInput
_IpcMessageHandlerClass::OnDiscardInputEvent
--
chrome://gpu/RenderViewImpl::CreateGraphicsContext3D
V8CacheStrategiesForCacheStorage
../../chromium/content/renderer/render_widget.cc
--
Chrome_libJingle_Signaling
Chrome_libJingle_WorkerThread
CreatePeerConnectionFactory
../../chromium/content/renderer/media/webrtc/peer_connection_dependency_factory.cc
--
chrome_lang_id.Parameter
chrome_lang_id.FeatureFunctionDescriptor
chrome_lang_id.FeatureExtractorDescriptor
gen/cld_3/protos/sentence.pb.cc
chrome_lang_id.Sentence
chrome_lang_id.Token
gen/cld_3/protos/task_spec.pb.cc
chrome_lang_id.TaskInput.Part
chrome_lang_id.TaskInput
chrome_lang_id.TaskOutput
chrome_lang_id.TaskSpec.Parameter
chrome_lang_id.TaskSpec
OnHostMsgDidStartLoading
../../chromium/components/pdf/renderer/pepper_pdf_host.cc
--
Chrome Serif
Chrome Sans
Chrome Symbol
Chrome Dingbats
Narrow
Condensed
--
ChromeInternal
account_type
 : version 
--
chrome.exe 
TriggeredProfileResetter
461175 AvatarMenu::OnProfileHighResAvatarLoaded
--
ChromeDashboard
cloud_print_privet_register
cloud_print_search
--
chrome_os
desktop_or_laptop
chromeVersion
OnStoreCreated
../../chromium/components/sync/device_info/device_info_sync_bridge.cc
--
chrome.ntp_tiles_internals.receiveSourceInfo
popular.overrideURL
popular.overrideCountry
--
chrome.ntp_tiles_internals.receiveSites
DisableTypeIfNecessary
../../chromium/components/history/core/browser/history_delete_directives_data_type_controller.cc
--
CHROME
fromIncognito
manifestKey
--
chrome_style
'chrome_style': expected chrome_style, got 
open_in_tab
--
chrome.instanceID not supported in incognito mode
InstanceID.Enabled
../../chromium/chrome/browser/extensions/api/language_settings_private/language_settings_private_api.cc
--
chrome.runtime.onRequest
chrome.runtime.onMessage
MessageService
Core
--
chrome.%s.%s
StartExpireTimer
../../chromium/components/omnibox/browser/autocomplete_controller.cc
--
chrome://physical-web
SearchProvider::Start
Omnibox.ServerSuggestDelete.Success
--
chrome://thumb/
SendResultFromBitmap
../../extensions/api/savedpasswords/savedpasswords_api.cc
--
chrome::mojom::FilePatcher
chrome::mojom::ImageContextMenuRenderer
chrome::mojom::InsecureContentRenderer
chrome::mojom::NetBenchmarking
chrome::mojom::NetworkDiagnostics
chrome::mojom::NetworkDiagnosticsClient
chrome::mojom::OpenSearchDescriptionDocumentHandler
chrome::mojom::PrerenderCanceler
chrome::mojom::RendererConfiguration
chrome::mojom::ResourceUsageReporter
chrome::mojom::ThumbnailCapturer
chrome::mojom::SafeArchiveAnalyzer
MbP?333333
?333333
--
chrome-devtools
chrome
chrome-guest
view-source
about:srcdoc
--
chrome://badcastcrash/
chrome://checkcrash/
chrome://inducebrowsercrashforrealz/
chrome://uithreadhang/
chrome://crash/
chrome://delayeduithreadhang/
chrome://crashdump/
chrome://gpuclean/
chrome://gpucrash/
chrome://gpuhang/
chrome://hang/
chrome://kill/
chrome://memory-exhaust/
chrome://ppapiflashcrash/
chrome://ppapiflashhang/
data:text/html,chromewebdata
chrome://view-http-cache/
chrome://resources/
chrome://shorthang/
Zyyy
default
--
Chrome
enterprise_check
policy
--
Chrome-Policy-Posture
1:356l7w
3\HJ3
--
chrome-extension
manifest.json
_locales
--
chrome://test-removable-storage-writer
extensions::mojom::RemovableStorageWriterClient
extensions::mime_handler::MimeHandlerService
--
Chrome_DevToolsHandlerThread
/devtools/page/
DevToolsActivePort
--
Chrome currently does not support the Push API in incognito mode (https://crbug.com/401439). There is deliberately no way to feature-detect this, since incognito mode needs to be undetectable by websites.
.ttf
.otc
--
chrome
traceEvents
traceEvents
--
chrome::mojom::DialDeviceDescriptionParser
https://chrome.google.com/webstore/detail/%s
--install-chrome-app can only be used to install apps.
--
chromeWebViewInternal.onContextMenuShow
webViewInternal.onDialog
webViewInternal.onDropLink
--
chrome
receiver-0
urn:x-cast:com.google.cast.tp.heartbeat
--
chrome.management.uninstall requires a user gesture.
Failed to parse manifest.
Failed to find extension with id *.
--
chrome.management.createAppShortcut requires a user gesture.
There is no browser window to create shortcut.
App shortcuts creation canceled by user.
chrome.management.setLaunchType requires a user gesture.
The launch type is not available for this app.
chrome.management.generateAppForLink requires a user gesture.
The URL "*" is invalid.
The title can not be empty.
--
chrome_update
install
shared_module_update
--
chrome::mojom::EmbeddedSearchConnector
Cannot upload crash dump: stat failed
Cannot upload crash dump: cannot alloc
--
chrome-devtools://devtools/bundled/inspector.html?ws=
enable-ui-devtools
bluetooth::mojom::DiscoverySession
--
chrome::mojom::ProfileImportObserver
chrome::mojom::ProfileImport
main_notes
other_notes
--
Chrome was unable to initialize icon.
(function (unsafeWindow) {
})(window);
--
Chrome_Linux
----**--yradnuoBgoLtrapitluMklaTelgooG--**----
multipart/form-data
--
chrome
captive_portal
BrowsingHistory
--
Chrome Form Data
xdg-settings
default-web-browser
--
chrome-apps.directory
default-url-scheme-handler
Native speech synthesis not supported on this platform.
chrome
ChildAccountDetection
child_account_service
--
chrome-avatar-index
chromeos-password-data
https://www.gstatic.com/chrome/supervised_user/blacklist-20141001-1k.bin
su-blacklist.bin
--
chromeAvatar
chromeOsAvatar
masterKey
name
--
chrome-avatar-index:
kAudioDebugRecordingsHandlerKey
AudioDebugRecordings.
--
chrome://cookieset
clients
name
--
chrome
DomRel-Enable
enable
--
chrome://theme/IDR_PROFILE_AVATAR_
s%d-c
AAAAAAAAAAA
--
Chrome currently only supports the Push API for subscriptions that will result in user-visible messages. You can indicate this by calling pushManager.subscribe({userVisibleOnly: true}) instead. See https://goo.gl/yqv4Q4 for more details.
https://safesearch.googleapis.com/v1:classify
application/x-www-form-urlencoded
--
Chrome_Linux
----**--yradnuoBgoLtrapitluMklaTelgooG--**----
multipart/form-data
--
chrome://devices
BackgroundSync
disabled
--
chrome_shutdown_ms.txt
ev_hashes_whitelist.bin
EV Certs CT whitelist
--
ChromeDMD-FileExistenceChecker
DownloadItem DownloadHistoryData
DownloadItemModelData key
--
chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik
access_point
source
--
Chrome
user_name
job_name
--
ChromeViewMsg_WebUIJavaScript
ChromeViewMsg_LoadBlockedPlugins
ChromeViewMsg_RequestFileSystemAccessAsyncResponse
ChromeViewMsg_SetClientSidePhishingDetection
ChromeViewMsg_SetWindowFeatures
ChromeViewMsg_GetWebApplicationInfo
ChromeViewMsg_SetAsInterstitial
ChromeViewMsg_NetErrorInfo
ChromeViewMsg_SetNavigationCorrectionInfo
ChromeViewHostMsg_UpdatedCacheStats
ChromeViewHostMsg_ContentBlocked
ChromeViewHostMsg_AllowDatabase
ChromeViewHostMsg_AllowDOMStorage
ChromeViewHostMsg_RequestFileSystemAccessSync
ChromeViewHostMsg_RequestFileSystemAccessAsync
ChromeViewHostMsg_AllowIndexedDB
ChromeViewHostMsg_GetPluginInfo
ChromeViewHostMsg_IsInternalPluginAvailableForMimeType
ChromeViewHostMsg_RemovePluginPlaceholderHost
ChromeViewMsg_FinishedDownloadingPlugin
ChromeViewMsg_PluginComponentUpdateSuccess
ChromeViewMsg_PluginComponentUpdateFailure
ChromeViewMsg_PluginComponentUpdateDownloading
ChromeViewHostMsg_ShowFlashPermissionBubble
ChromeViewHostMsg_CouldNotLoadPlugin
ChromeViewHostMsg_BlockedOutdatedPlugin
ChromeViewHostMsg_BlockedComponentUpdatedPlugin
ChromeViewHostMsg_BlockedUnauthorizedPlugin
ChromeViewHostMsg_DidGetWebApplicationInfo
ChromeViewMsg_SetSearchURLs
ChromeViewHostMsg_IsCrashReportingEnabled
TtsHostMsg_InitializeVoiceList
TtsHostMsg_Speak
--
ChromeUtilityMsg_RenderPDFPagesToPWGRaster
ChromeUtilityMsg_GetPrinterCapsAndDefaults
ChromeUtilityMsg_GetPrinterSemanticCapsAndDefaults
ChromeUtilityHostMsg_RenderPDFPagesToPWGRaster_Succeeded
ChromeUtilityHostMsg_RenderPDFPagesToPWGRaster_Failed
WebRtcLoggingMsg_AddLogMessages
WebRtcLoggingMsg_LoggingStopped
--
chrome-profile-{type}-{pid}
chrome://apps/
chrome://bookmarks/
chrome://view-cert/
chrome://view-cert-dialog/
chrome://chrome-signin/
chrome://chrome-urls/
chrome://conflicts/
chrome://constrained-test/
chrome://credits/
chrome://devices/
chrome-devtools://devtools/bundled/inspector.html
chrome://downloads/
chrome://extension-icon/
chrome://extensions-frame/
chrome://extensions/
chrome://favicon/
chrome://feedback/
chrome://help-frame/
chrome://help/
chrome://history/
chrome://history-frame/
chrome://inspect/
chrome://md-settings/
chrome://newtab/
chrome://md-user-manager/
chrome://print/
chrome://quit/
chrome://restart/
chrome://settings/
chrome://settings/content
chrome://settings-frame/
chrome://signin-email-confirmation
chrome://signin-error/
chrome://suggestions/
chrome://sync-confirmation/
chrome://terms/
chrome://theme/
chrome://thumb/
chrome://uber-frame/
chrome://version/
chrome://welcome/
chrome://welcome-win10/
chrome://media-router/
discards
chrome://discards/
about
apps
--
chrome-signin
chrome-urls
crashes
crash
--
chrome
usb-internals
user-actions
--
chrome-extension://invalid/
https://www.google.com/settings/chrome/sync/
https://myaccount.google.com/activitycontrols/search
--
chrome-native
chrome-search
local-ntp
chrome-search://local-ntp/local-ntp.html
remote-ntp
most-visited
chrome-search://most-visited/
https://support.google.com/chromebook/?p=smart_lock
safe=active
--
chrome://%s/*
https://clients2.google.com/service/update2/crx
utm_source
chrome-app-launcher-info-dialog
eemcgdkfndhakfknompkggombfjjjeno
mgndgikekgjfcpckkfioiadnlibdjbkf
--
chrome_version
system_name
system_version
--
chrome
model name
base::PostTask
--
chrome-extension://mpognobbkildjkofajifpdfhcoklimli/
chrome-extension://mpognobbkildjkofajifpdfhcoklimli/components/startpage/startpage.html
Access denied while trying to set a reserved property.
vivaldi
--
chrome://vivaldi-data/
extData
debug-vivaldi
--
CHROME_HEADLESS
CHROME_LOG_FILE
CHROME_CRASHED
CHROME_RESTART
RIGHT_TO_LEFT
LEFT_TO_RIGHT
--
chrome
version
/home/
--
CHROME_SELECTION
INCR
STRING
--
chrometrace.log
trace_config
startup_duration
--
CHROME_SANDBOX_DEBUGGING
shared-files
/persistent
--
chrome
chromiumcrx
unknown
--
chrome-distiller
entry_id
time
--
Chrome Keys
Chrome Safe Storage
chromium
chrome
account_tracker_service_last_update
ChromiumAccountReconcilor
--
chrome
chrome-devtools
chrome-extension
chrome
profile.default_content_setting_values.fullscreen
profile.default_content_setting_values.mouselock
--
chrome_url_overrides
commands
content_capabilities
--
chrome_settings_overrides.homepage
chrome_settings_overrides.search_provider
chrome_settings_overrides.startup_pages
page_action
default_icon
--
chrome_settings_overrides
chrome_settings_overrides.search_provider.alternate_urls
short_name
sockets
--
chrome_ui_overrides
update_url
url_handlers
--
chromeos
default
linux
--
chrome-remove-extension-dialog
Invalid Chrome Web Store reponse
average_rating
--
Chrome_DevToolsADBThread
/json/version
/json
--
chrome_devtools_remote
Chrome
webview_devtools_remote
======== output separator ========
--
chrome-devtools-frontend.appspot.com
https://chrome-devtools-frontend.appspot.com/
serve_file
--
chrome-sync
gcm.channel_status
gcm.poll_interval
--
chrome-
mcs.android.com
android-
--
chrome://newtab/#open_tabs
browser.clear_data.time_period
browser.clear_data.time_period_basic
--
Chrome-Proxy
Chrome-Proxy-Accept-Transform: identity
Cache-Control: no-cache
DataReductionProxy.StartupState
--
chrome-proxy
chrome-proxy-accept-transform
chrome-proxy-content-transform
empty-image
lite-page
--
Chrome-Compression-Proxy
fvia
DataReductionTrustedSpdyProxy
--
chrome-net-export-log.json
net-export/chrome-net-export-log.json
( ) 
--
chrome_app_indicator_
aura-transient-parent
DuplexNoTumble
--
chromeMediaSource
disableLocalEcho
chromeMediaSourceId
sourceId
chromeRenderToAssociatedSink
googHotword
googEchoCancellation
--
Chrome Web Store installations can only be started by the top frame.
Chrome Web Store installations can only be initated by a user gesture.
No Chrome Web Store item link found.
chrome-webstore-item
Invalid Chrome Web Store item URL.
Invalid stream arguments
--
chrome-proxy-content-transform
lite-page
background
--
chrome://print/
chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai
type
viewport
--
CHROME_LOG_FILE
HeadlessChrome
X-DevTools-Request-Id
--
CHROME_HEADLESS
code
message
--
CHROME VERSION
OS VERSION
about_sync_data
--
chrome.power extensions
data_reduction_proxy
chromium-pdf
--
Chrome Syncable FileSystem
application/octet-stream
DriveMetadata_v2
--
Chrome settings
\d{5,}
R8  GR88RG16
--
chrome-distiller-internal://dummy/
dark
sepia
--
chrome_sync.js
data.js
events.js
--
chrome.sync.dispatchEvent
getAllNodes
chrome.sync.getAllNodesCallback
registerForEvents
registerForPerTypeCounters
--
chromeWebViewInternal.onClicked
contextMenus.onClicked
cookies.onChanged
--
Chrome settings
Cannot request automation tree on url "*". Extension manifest must request permission to access this host.
No main frame.
--
chromeMediaSource
chromeMediaSourceId
The specified target is not found.
URL scheme for the specified target is not secure.
--
chromeos
colemak
dvorak
--
chrome.send('queryHistory', ['', 0, 0, 0, RESULTS_PER_PAGE]);
chrome.send('getForeignSessions');
/** @type {Promise} */
var upgradePromise = null;
--
chrome.app.runtime.onLaunched.addListener(function() {
  // We need to focus the window if it already exists, since it
  // is created as 'hidden'.
--
chrome.runtime.onMessage.addListener(feedbackReadyHandler);
chrome.runtime.onMessageExternal.addListener(requestFeedbackHandler);
chrome.feedbackPrivate.onFeedbackRequested.addListener(startFeedbackUI);
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
--
chrome.identityPrivate.onWebFlowRequest.addListener(showAuthDialog);
/* Copyright (c) 2013 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
--
chrome.runtime.onMessageExternal.addListener(messageHandlerExternal);
// Listen to direct connection events, and wire up a message handler on the port
chrome.runtime.onConnectExternal.addListener(function(port) {
  function sendResponse(response) {
    port.postMessage(response);
--
chrome/test/functional/special_tabs.py. -->
<meta charset="utf-8">
<title>Sync Internals</title>
--
chrome.sync.decorateQuickQueryControls(
  allLinks,
  $('sync-search-submit'),
--
chrome.sync.decorateSearchControls(
  $('sync-search-query'),
  $('sync-search-submit'),
--
ChromeProcessHelper.prototype={get pid(){return this.process.pid;},isTelemetryInternalEvent:function(slice){if(this.telemetryInternalRanges_===undefined){this.findTelemetryInternalRanges_();}
for(var range of this.telemetryInternalRanges_){if(range.containsExplicitRangeInclusive(slice.start,slice.end)){return true;}}
return false;},findTelemetryInternalRanges_:function(){this.telemetryInternalRanges_=[];var start=0;for(var thread of Object.values(this.process.threads)){for(var slice of thread.asyncSliceGroup.getDescendantEvents()){if(/^telemetry\.internal\.[^.]*\.start$/.test(slice.title)){start=slice.start;}else if(/^telemetry\.internal\.[^.]*\.end$/.test(slice.title)&&start!==undefined){this.telemetryInternalRanges_.push(tr.b.math.Range.fromExplicitRange(start,slice.end));start=undefined;}}}},getFrameEventsInRange:function(frametimeType,range){var titleToGet=(frametimeType===MAIN_FRAMETIME_TYPE?MAIN_RENDERING_STATS:IMPL_RENDERING_STATS);var frameEvents=[];for(var event of this.process.getDescendantEvents()){if(event.title===titleToGet){if(range.intersectsExplicitRangeInclusive(event.start,event.end)){frameEvents.push(event);}}}
--
ChromeBrowserHelper.PROCESS_NAME='Browser';ChromeBrowserHelper.isBrowserProcess=function(process){return!!process.findAtMostOneThreadNamed('CrBrowserMain');};ChromeBrowserHelper.prototype={__proto__:tr.model.helpers.ChromeProcessHelper.prototype,get browserName(){var hasInProcessRendererThread=this.process.findAllThreadsNamed('Chrome_InProcRendererThread').length>0;return hasInProcessRendererThread?'webview':'chrome';},get mainThread(){return this.mainThread_;},get rendererHelpers(){return this.modelHelper.rendererHelpers;},getLoadingEventsInRange:function(rangeOfInterest){return this.getAllAsyncSlicesMatching(function(slice){return slice.title.indexOf('WebContentsImpl Loading')===0&&rangeOfInterest.intersectsExplicitRangeInclusive(slice.start,slice.end);});},getCommitProvisionalLoadEventsInRange:function(rangeOfInterest){return this.getAllAsyncSlicesMatching(function(slice){return slice.title==='RenderFrameImpl::didCommitProvisionalLoad'&&rangeOfInterest.intersectsExplicitRangeInclusive(slice.start,slice.end);});},get hasLatencyEvents(){var hasLatency=false;for(var thread of this.modelHelper.model.getAllThreads()){for(var event of thread.getDescendantEvents()){if(!event.isTopLevel)continue;if(!(event instanceof tr.e.cc.InputLatencyAsyncSlice)){continue;}
hasLatency=true;}}
return hasLatency;},getLatencyEventsInRange:function(rangeOfInterest){return this.getAllAsyncSlicesMatching(function(slice){return(slice.title.indexOf('InputLatency')===0)&&rangeOfInterest.intersectsExplicitRangeInclusive(slice.start,slice.end);});},getAllAsyncSlicesMatching:function(pred,opt_this){var events=[];this.iterAllThreads(function(thread){for(var slice of thread.getDescendantEvents()){if(pred.call(opt_this,slice)){events.push(slice);}}});return events;},iterAllThreads:function(func,opt_this){for(var thread of Object.values(this.process.threads)){func.call(opt_this,thread);}
--
ChromeGpuHelper.PROCESS_NAME='GPU Process';ChromeGpuHelper.isGpuProcess=function(process){if(process.findAtMostOneThreadNamed('CrBrowserMain')||process.findAtMostOneThreadNamed('CrRendererMain')){return false;}
return process.findAllThreadsNamed('CrGpuMain').length>0;};ChromeGpuHelper.prototype={__proto__:tr.model.helpers.ChromeProcessHelper.prototype};return{ChromeGpuHelper,};});'use strict';tr.exportTo('tr.b',function(){function SinebowColorGenerator(opt_a,opt_brightness){this.a_=(opt_a===undefined)?1:opt_a;this.brightness_=(opt_brightness===undefined)?1:opt_brightness;this.colorIndex_=0;this.keyToColor={};}
SinebowColorGenerator.prototype={colorForKey:function(key){if(!this.keyToColor[key]){this.keyToColor[key]=this.nextColor();}
--
ChromeUserFriendlyCategoryDriver.fromEvent=function(event){var userFriendlyCategory=USER_FRIENDLY_CATEGORY_FOR_TITLE.get(event.title);if(userFriendlyCategory){if(userFriendlyCategory===SAME_AS_PARENT){if(event.parentSlice){return ChromeUserFriendlyCategoryDriver.fromEvent(event.parentSlice);}}else{return userFriendlyCategory;}}
var eventCategoryParts=tr.b.getCategoryParts(event.category);for(var i=0;i<eventCategoryParts.length;++i){var eventCategory=eventCategoryParts[i];userFriendlyCategory=USER_FRIENDLY_CATEGORY_FOR_EVENT_CATEGORY[eventCategory];if(userFriendlyCategory){return userFriendlyCategory;}}
return'other';};ChromeUserFriendlyCategoryDriver.getColor=function(ufc){return COLOR_FOR_USER_FRIENDLY_CATEGORY.colorForKey(ufc);};ChromeUserFriendlyCategoryDriver.ALL_TITLES=['other'];for(var category in TITLES_FOR_USER_FRIENDLY_CATEGORY){if(category===SAME_AS_PARENT)continue;ChromeUserFriendlyCategoryDriver.ALL_TITLES.push(category);}
--
ChromeUserFriendlyCategoryDriver.ALL_TITLES.sort();for(var category of ChromeUserFriendlyCategoryDriver.ALL_TITLES){ChromeUserFriendlyCategoryDriver.getColor(category);}
return{ChromeUserFriendlyCategoryDriver,};});'use strict';tr.exportTo('tr.model.helpers',function(){const NET_CATEGORIES=new Set(['net','netlog','disabled-by-default-netlog','disabled-by-default-network']);class ChromeThreadHelper{constructor(thread){this.thread=thread;}
getNetworkEvents(){const networkEvents=[];for(const slice of this.thread.asyncSliceGroup.slices){const categories=tr.b.getCategoryParts(slice.category);const isNetEvent=category=>NET_CATEGORIES.has(category);if(categories.filter(isNetEvent).length===0)continue;networkEvents.push(slice);}
--
ChromeRendererHelper.PROCESS_NAME='Renderer';ChromeRendererHelper.isRenderProcess=function(process){if(process.findAtMostOneThreadNamed('CrRendererMain'))return true;if(process.findAtMostOneThreadNamed('Compositor'))return true;return false;};ChromeRendererHelper.isTracingProcess=function(process){return process.labels!==undefined&&process.labels.length===1&&process.labels[0]==='chrome://tracing';};ChromeRendererHelper.prototype={__proto__:tr.model.helpers.ChromeProcessHelper.prototype,get mainThread(){return this.mainThread_;},get compositorThread(){return this.compositorThread_;},get rasterWorkerThreads(){return this.rasterWorkerThreads_;},get isChromeTracingUI(){return ChromeRendererHelper.isTracingProcess(this.process);},};return{ChromeRendererHelper,};});'use strict';tr.exportTo('tr.model.helpers',function(){function findChromeBrowserProcesses(model){return model.getAllProcesses(tr.model.helpers.ChromeBrowserHelper.isBrowserProcess);}
function findChromeRenderProcesses(model){return model.getAllProcesses(tr.model.helpers.ChromeRendererHelper.isRenderProcess);}
function findChromeGpuProcess(model){var gpuProcesses=model.getAllProcesses(tr.model.helpers.ChromeGpuHelper.isGpuProcess);if(gpuProcesses.length!==1)return undefined;return gpuProcesses[0];}
--
ChromeModelHelper.guid=tr.b.GUID.allocateSimple();ChromeModelHelper.supportsModel=function(model){if(findChromeBrowserProcesses(model).length)return true;if(findChromeRenderProcesses(model).length)return true;return false;};ChromeModelHelper.prototype={get pid(){throw new Error('woah');},get process(){throw new Error('woah');},get model(){return this.model_;},get browserProcess(){if(this.browserHelper===undefined)return undefined;return this.browserHelper.process;},get browserHelper(){return this.browserHelpers_[0];},get browserHelpers(){return this.browserHelpers_;},get gpuHelper(){return this.gpuHelper_;},get rendererHelpers(){return this.rendererHelpers_;},get rendererWithLargestPid(){var largestPid=-1;for(var pid in this.rendererHelpers){var rendererHelper=this.rendererHelpers[pid];if(rendererHelper.isChromeTracingUI)continue;if(pid>largestPid)largestPid=pid;}
if(largestPid===-1)return undefined;return this.rendererHelpers[largestPid];},get chromeBounds(){if(!this.chromeBounds_){this.chromeBounds_=new tr.b.math.Range();for(var browserHelper of
tr.b.dictionaryValues(this.browserHelpers)){this.chromeBounds_.addRange(browserHelper.process.bounds);}}
--
ChromeAuditor.prototype={__proto__:Auditor.prototype,runAnnotate:function(){if(!this.modelHelper)return;for(var pid in this.modelHelper.rendererHelpers){var rendererHelper=this.modelHelper.rendererHelpers[pid];if(rendererHelper.isChromeTracingUI){rendererHelper.process.important=false;}}},installUserFriendlyCategoryDriverIfNeeded:function(){this.model.addUserFriendlyCategoryDriver(tr.e.chrome.ChromeUserFriendlyCategoryDriver);},runAudit:function(){if(!this.modelHelper)return;this.model.replacePIDRefsInPatchups(tr.model.BROWSER_PROCESS_PID_REF,this.modelHelper.browserProcess.pid);this.model.applyObjectRefPatchups();}};Auditor.register(ChromeAuditor);return{ChromeAuditor,};});'use strict';tr.exportTo('tr.e.chrome',function(){var KNOWN_PROPERTIES={absX:1,absY:1,address:1,anonymous:1,childNeeds:1,children:1,classNames:1,col:1,colSpan:1,float:1,height:1,htmlId:1,name:1,posChildNeeds:1,positioned:1,positionedMovement:1,relX:1,relY:1,relativePositioned:1,row:1,rowSpan:1,selfNeeds:1,stickyPositioned:1,tag:1,width:1};function LayoutObject(snapshot,args){this.snapshot_=snapshot;this.id_=args.address;this.name_=args.name;this.childLayoutObjects_=[];this.otherProperties_={};this.tag_=args.tag;this.relativeRect_=tr.b.math.Rect.fromXYWH(args.relX,args.relY,args.width,args.height);this.absoluteRect_=tr.b.math.Rect.fromXYWH(args.absX,args.absY,args.width,args.height);this.isFloat_=args.float;this.isStickyPositioned_=args.stickyPositioned;this.isPositioned_=args.positioned;this.isRelativePositioned_=args.relativePositioned;this.isAnonymous_=args.anonymous;this.htmlId_=args.htmlId;this.classNames_=args.classNames;this.needsLayoutReasons_=[];if(args.selfNeeds){this.needsLayoutReasons_.push('self');}
if(args.childNeeds){this.needsLayoutReasons_.push('child');}
if(args.posChildNeeds){this.needsLayoutReasons_.push('positionedChild');}
--
chrome.experimental.devtools.inspectedWindow=chrome.devtools.inspectedWindow;}
if(extensionInfo.exposeWebInspectorNamespace)
window.webInspector=coreAPI;testHook(extensionServer,coreAPI);}
--
ChromeOS 
Zip 
PWG 
--
Chrome Web Store
Vivaldi 
($1)
--
Chrome Web Store
($1)
($1)
--
Chromebook
 Smart Lock(
)Android 
--
Chromebook
 Smart Lock
?Chromebook
--
Chrome
 Google Now
(&F)
--
Chromebook
 Smart Lock
Smart Lock 
--
ChromeOS System Image WriterM
diaf
jl-ellen
--
Chrome Canary 
Vivaldi 
Vivaldi 
--
ChromeOS 
PWG Raster 
 '$1' 
--
Chrome OS 
UTF-8 
 TAB
--
Chromebook (
 Android 
 $1 
--
Chromebook 
?Smart Lock
Vivaldi 
--
Chrome!
MIDI 
 MIDI 
--
Chromebook
 $1 
Smart Lock 
--
Chromebook 
 $1 
?Vivaldi 
--
Chromebook 
 $1 
 $1 
--
Chromebook 
 Vivaldi 
Vivaldi 
--
Chrome OS 
          
Vivaldi 
--
chrome.com/beta 
Vivaldi 
 chrome.com/dev 
--
Chrome Web Store
 Vivaldi
 ($1) 
--
Chrome Web Store
 ($1)
 ($1)
--
Chrome Canary 
Vivaldi 
Vivaldi 
--
ChromeOS 
PWG 
 "$1"
--
chrome.com 
 ($1) 
 $1 
--
Chromebook 
 Smart Lock (
 Android 
--
Chromebook 
 Smart Lock 
 Chromebook 
--
Chrome 
 Google Now!
&File&
--
Chromebook 
 Smart Lock
 $1 
--
Chromebook 
 Smart Lock 
 Vivaldi 
--
Chrome OS 
Vivaldi 
          
--
Chrome Web Store
 (manifest).
 Vivaldi
--
Chrome Web Store
 ($1)
 ($1)
--
ChromeOS
 sistemos turinio kopijos ra
ymo priemon
--
Chrome Web StoreInternetin
 parduotuv
Rodyti i
--
Chromebook
 (beta versija)Jei 
Android
--
Chromebook
?Jei i
jungsite 
--
Chromebook
, negal
site atrakinti 
--
Chrome
 skirta 
Google
--
Chromebook
Atsibodo vesti slapta
ius? Galite atrakinti savo 
--
Chromebook
, telefone, kuriuo jis atrakinamas, turi b
ti naudojamas ekrano u
--
Chromebook
, telefone turi b
ti naudojamas ekrano u
--
Chromebook. Kit
 kart
 gal
--
Chromebook
Vivaldi
 turi 
--
Chrome
 ir bandykite dar kart
.NPAPI papildiniai nepalaikomi.Paketas netinkamas: 
--
Chrome Canary 
Vivaldi 
.Vivaldi 
--
Chrome 
Chrome 
 ($1).
 Vivaldi-
--
Chrome 
 ($1)
 ($1)
--
Chrome Canary 
Vivaldi 
.Vivaldi 
--
ChromeOS 
PWG 
"$1" 
--
Chrome OS 
, 'kiosk_only' 
."$1" 
--
Chrome Web Store
Vivaldi 
 $1 
--
Chrome Web StoreWeb Store
 ($1)
 ($1)
--
Chromebook
 Smart Lock (
)Android 
--
Chromebook
 Smart Lock
?Chromebook
--
Chrome 
 Google Now!
&File&
--
Chromebook
 Smart Lock
Smart Lock 
--
ChromeOS 
Zip 
PWG 
--
Chrome OS 
 'kiosk_only' 
."$2" 
--
Chromebook 
 Smart Lock (
 Android 
--
Chromebook 
 Smart Lock 
?Chromebook 
--
Chrome 
 Google Now!
 $1 
--
Chromebook 
 Smart Lock
? $1 
--
Chrome Web StoreWeb StoreMostra els detallsAmaga els detallsAcc
s denegat.Error d'extensi
Advertiment:S'ha afegit una extensi
--
Chrome Web Store
 Vivaldi
 ($1) 
--
Chrome Web StoreWeb Store
 ($1)
 ($1)
--
Chrome peut fournir une correction orthographique plus intelligente en envoyant ce que vous saisissez dans le navigateur aux serveurs Google, ce qui vous permet d'utiliser la m
me technologie de correction orthographique que la recherche
Google.Aidez-nous 
--
Chrome Canary 
Vivaldi 
Vivaldi 
--
ChromeOS 
Zip 
PWG 
--
ChromeOS 
 Javascript
 CSS
--
Chrome Web
Chrome
Vivaldi 
: $1
--
Chrome Web
Vivaldi 
Vivaldi 
--
Chrome 
 Google Now
(&F)
--
Chrome OS 
          Vivaldi 
          <span jscontent="settingsTitle"></span>
--
chrome.com/beta 
 Beta 
Vivaldi 
chrome.com/dev 
 Dev 
<a target="_top" href="$1" id="$2">$3 
--
Chrome 
NPAPI 
: $1
--
Chrome Web Store{NUM_FILES,plural, =1{Ma sta
y dost
p do jednego pliku.}few{Ma sta
--
Chrome Web StoreWeb StorePoka
 szczeg
yUkryj szczeg
--
ChromeOS 
PWG 
"$1" 
--
Chrome Web Store
Vivaldi 
 ($1) 
--
Chrome Web Store
 ($1)
 ($1)
--
Chromebook 
 Smart Lock (
 Android 
--
Chromebook 
 Smart Lock
 Chromebook 
--
Chrome 
 Google Now!
.MIDI 
--
Chromebook 
 Smart Lock
Smart Lock 
--
Chrome Canary 
 Vivaldi 
.Vivaldi 
--
ChromeOS 
PWG 
 "$1".
--
Chrome Web Store
Vivaldi 
 $1 
--
Chrome Web Store
 ($1)
 ($1)
--
Chromebook 
 Smart Lock (
 Android 
--
Chromebook 
 Smart Lock 
 Chromebook 
--
Chrome 
 Google 
.MIDI 
--
Chromebook 
 Smart Lock
 $1 
--
ChromeOS 
PWG 
 "$1".
--
Chrome OS 
 'kiosk_only' 
 "$1" 
--
Chromebook 
 Smart Lock (
 Android 
--
Chromebook 
 Smart Lock 
 Chromebook 
--
Chrome 
 Google Now!
&File&
--
Chromebook 
 Smart Lock
 $1 
--
Chrome Web Store
 Vivaldi
 $1 
--
Chrome Web Store
 ($1)
 ($1)
--
Chrome Web Store
 Manifest
 Vivaldi
--
Chrome Web Store
 ($1)
 ($1)
--
Chrome Canary 
Vivaldi 
Vivaldi 
--
Chrome 
Chrome 
 Vivaldi 
Chrome 
Vivaldi 
 Vivaldi 
--
chrome.com
 $1 
 $1 
--
Chromebook 
 Android 
 Android 
--
Chromebook 
 Smart Lock
Chromebook 
 Vivaldi 
 Smart Lock
--
Chrome
Google
(&F)
--
Chromebook 
Smart Lock 
 $1 
--
Chromebook 
 $1 
Vivaldi 
--
Chromebook 
Android
Smart Lock 
--
Chromebook 
 Smart Lock
Smart Lock 
--
Chromebook 
 Vivaldi 
Vivaldi
--
Chrome 
Yandex 
Opera 15+ 
--
Chrome Web Store
manifest 
 $1 
--
Chrome Web StoreWeb Store
 ($1)
 ($1)
--
Chrome AppsChrome Canary AppsVivaldi 
.Vivaldi 
.Vivaldi 
--
ChromeOS 
PWG 
 "$1".
--
Chrome Apps
 $1 
 ($1) 
--
Chromebook 
 Smart Lock (
 Android 
--
Chromebook 
 Smart Lock 
 Chromebook 
--
Chrome 
 Google Now!
.MIDI 
--
Chromebook 
 Smart Lock
 $1 
--
Chrome Canary Uygulamalar
Vivaldi kameran
 ve mikrofonunuzu kullan
--
ChromessaParansimme Chromen turvallisuutta poistamalla k
 sovelluksia, joita ei l
ydy kohteesta $1 ja jotka on voitu lis
--
Chrome Canary 
Vivaldi 
Vivaldi 
--
Chrome 
Chrome 
 ($1) 
 Vivaldi 
Chrome 
 Vivaldi 
 Vivaldi 
--
Chromebook 
 Smart Lock (
 Android 
--
Chromebook 
 Smart Lock
Smart Lock 
--
Chromebook 
 Smart Lock 
 $1 
--
Chromebook 
 Smart Lock 
 $1 
--
Chrome 
Yandex 
Opera 15+ 
--
ChromeOS 
Zip 
PWG 
--
Chrome Web Store
Vivaldi 
 $1 
--
Chrome Web Store
 ($1)
 ($1)
--
Chromebook-
 Smart Lock (
 Android 
--
Chromebook-
 Smart Lock 
?Vivaldi-
--
Chrome-
 'Google 
.MIDI 
--
Chromebook-
 Smart Lock
 $1