File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,9 @@ public ProcessCategory Category {
86
86
if ( file . Equals ( "delegate_execute.exe" , StringComparison . CurrentCultureIgnoreCase ) )
87
87
return ProcessCategory . DelegateExecute ;
88
88
else if ( file . Equals ( "chrome.exe" , StringComparison . CurrentCultureIgnoreCase ) ) {
89
- if ( _commandLine . Contains ( "--type=renderer" ) )
89
+ if ( _commandLine . Contains ( "--extension-process" ) )
90
+ return ProcessCategory . Extension ;
91
+ else if ( _commandLine . Contains ( "--type=renderer" ) )
90
92
return ProcessCategory . Renderer ;
91
93
else if ( _commandLine . Contains ( "--type=plugin" ) )
92
94
return ProcessCategory . Plugin ;
@@ -100,6 +102,10 @@ public ProcessCategory Category {
100
102
return ProcessCategory . PpapiBroker ;
101
103
else if ( _commandLine . Any ( arg => arg . StartsWith ( "-ServerName" ) ) )
102
104
return ProcessCategory . MetroViewer ;
105
+ else if ( _commandLine . Contains ( "--type=crashpad-handler" ) )
106
+ return ProcessCategory . Crashpad ;
107
+ else if ( _commandLine . Contains ( "--type=utility" ) )
108
+ return ProcessCategory . Utility ;
103
109
else
104
110
return ProcessCategory . Browser ;
105
111
} else
Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ public enum ProcessCategory {
14
14
DelegateExecute ,
15
15
MetroViewer ,
16
16
Service ,
17
+ Crashpad ,
18
+ Utility ,
19
+ Extension ,
17
20
Other
18
21
}
19
22
You can’t perform that action at this time.
0 commit comments