From bf60f2f56f34c575f30d07ebb10d1150daab3bcb Mon Sep 17 00:00:00 2001 From: Adam Barth Date: Sat, 13 Aug 2016 16:38:39 -0700 Subject: [PATCH] //flutter/content_handler code complete (flutter/engine#2925) This patch should contain all the code we need to run Flutter on Fuchsia's software framebuffer (without text). I haven't actually tried running the code, so I'm sure it doesn't work yet. --- engine/src/flutter/runtime/dart_controller.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/engine/src/flutter/runtime/dart_controller.h b/engine/src/flutter/runtime/dart_controller.h index 20cccaebf2a..a9c560882a7 100644 --- a/engine/src/flutter/runtime/dart_controller.h +++ b/engine/src/flutter/runtime/dart_controller.h @@ -18,8 +18,6 @@ class DartController { DartController(); ~DartController(); - static void InitVM(); - void RunFromPrecompiledSnapshot(); void RunFromSnapshot(const uint8_t* buffer, size_t size); void RunFromSource(const std::string& main, const std::string& packages);