| Index: runtime/bin/vmservice/client/lib/src/app/application.dart
|
| diff --git a/runtime/bin/vmservice/client/lib/src/app/application.dart b/runtime/bin/vmservice/client/lib/src/app/application.dart
|
| index 1efd625f4bb24ebb29ead75e5754a18109f6ef19..17f20f698598a6607a465922004d465cb59a0f39 100644
|
| --- a/runtime/bin/vmservice/client/lib/src/app/application.dart
|
| +++ b/runtime/bin/vmservice/client/lib/src/app/application.dart
|
| @@ -13,11 +13,13 @@ class ObservatoryApplication extends Observable {
|
| @observable final LocationManager locationManager;
|
| @observable final VM vm;
|
| @observable Isolate isolate;
|
| +
|
| + /// The current [ServiceObject] being viewed by the application.
|
| @observable ServiceObject response;
|
|
|
| - void setResponse(ServiceObject response) {
|
| - this.response = response;
|
| - }
|
| + /// Any client-level arguments for viewing the current response.
|
| + @observable String args;
|
| + // TODO(turnidge): Make args a Map.
|
|
|
| void _initOnce() {
|
| // Only called once.
|
|
|