@@ -40,7 +40,6 @@ export interface IMemoryInfo {
4040 "version" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
4141 "ellapsed" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "isMeasurement": true },
4242 "isLatestVersion": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
43- "isRemoteWindow": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
4443 "didUseCachedData": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
4544 "windowKind": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
4645 "windowCount": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
@@ -100,11 +99,6 @@ export interface IStartupMetrics {
10099 */
101100 readonly isLatestVersion : boolean ;
102101
103- /**
104- * Whether this window talks to a remote endpoint.
105- */
106- readonly isRemoteWindow : boolean ;
107-
108102 /**
109103 * Whether we asked for and V8 accepted cached data.
110104 */
@@ -381,7 +375,6 @@ class TimerService implements ITimerService {
381375
382376 // reflections
383377 isLatestVersion : Boolean ( await this . _updateService . isLatestVersion ( ) ) ,
384- isRemoteWindow : Boolean ( this . _environmentService . configuration . remoteAuthority ) ,
385378 didUseCachedData : didUseCachedData ( ) ,
386379 windowKind : this . _lifecycleService . startupKind ,
387380 windowCount : await this . _windowsService . getWindowCount ( ) ,
0 commit comments