mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* Reland "dart:ui conversion from native to FfiNative" (#33116)" This reverts commit d85395558f3d72c64d9c75e00c6ebdd5bf4583e3. Resolves merge conflicts and updates modified/newly added methods, and fixes the incorrect argument counts on some of the Path methods.
24 lines
528 B
C++
24 lines
528 B
C++
// Copyright 2013 The Flutter 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 FLUTTER_LIB_UI_DART_UI_H_
|
|
#define FLUTTER_LIB_UI_DART_UI_H_
|
|
|
|
#include "flutter/common/settings.h"
|
|
#include "flutter/fml/macros.h"
|
|
|
|
namespace flutter {
|
|
|
|
class DartUI {
|
|
public:
|
|
static void InitForIsolate(const Settings& settings);
|
|
|
|
private:
|
|
FML_DISALLOW_IMPLICIT_CONSTRUCTORS(DartUI);
|
|
};
|
|
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_LIB_UI_DART_UI_H_
|