blob: 1657afcfd42885df1ebf2eae9737708e0d8aa603 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#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();
};
} // namespace blink
#endif // SKY_ENGINE_PUBLIC_SKY_SKY_VIEW_CLIENT_H_