Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Unified Diff: runtime/observatory/tests/observatory_ui/mocks/objects/sentinel.dart

Issue 2265513003: Converted Observatory object-common element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Addressed comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/tests/observatory_ui/mocks/objects/sentinel.dart
diff --git a/runtime/observatory/tests/observatory_ui/mocks/objects/sentinel.dart b/runtime/observatory/tests/observatory_ui/mocks/objects/sentinel.dart
index 1d77a3589eb04176008a4e9a8a216d7ddd79c642..5fb6a8a8ef01e3127e3e00e42a70a6ac90df5875 100644
--- a/runtime/observatory/tests/observatory_ui/mocks/objects/sentinel.dart
+++ b/runtime/observatory/tests/observatory_ui/mocks/objects/sentinel.dart
@@ -4,10 +4,10 @@
part of mocks;
-class Sentinel implements M.Sentinel {
+class SentinelMock implements M.Sentinel {
final M.SentinelKind kind;
final String valueAsString;
- const Sentinel({this.kind: M.SentinelKind.collected,
+ const SentinelMock({this.kind: M.SentinelKind.collected,
this.valueAsString: 'sentinel-value'});
}

Powered by Google App Engine
This is Rietveld 408576698