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

Unified Diff: sky/engine/public/sky/sky_view_client.h

Issue 1156203003: Fix dart:sky.internals to work in SkyView (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 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: sky/engine/public/sky/sky_view_client.h
diff --git a/sky/engine/public/sky/sky_view_client.h b/sky/engine/public/sky/sky_view_client.h
index 54ab8262e38113231aeed164df1ef0af67b188d5..1657afcfd42885df1ebf2eae9737708e0d8aa603 100644
--- a/sky/engine/public/sky/sky_view_client.h
+++ b/sky/engine/public/sky/sky_view_client.h
@@ -5,12 +5,16 @@
#ifndef SKY_ENGINE_PUBLIC_SKY_SKY_VIEW_CLIENT_H_
#define SKY_ENGINE_PUBLIC_SKY_SKY_VIEW_CLIENT_H_
+typedef struct _Dart_Isolate* Dart_Isolate;
+
namespace blink {
class SkyViewClient {
public:
virtual void ScheduleFrame() = 0;
+ virtual void DidCreateIsolate(Dart_Isolate isolate) = 0;
+
protected:
virtual ~SkyViewClient();
};

Powered by Google App Engine
This is Rietveld 408576698