Fix include paths of fml/time headers in the shell and rasterizer (flutter/engine#17502)

This commit is contained in:
Jason Simmons 2020-04-03 12:33:54 -07:00 committed by GitHub
parent fb3c662a37
commit 02720fbca8
4 changed files with 6 additions and 6 deletions

View File

@ -8,8 +8,8 @@
#include <utility>
#include "fml/time/time_delta.h"
#include "fml/time/time_point.h"
#include "flutter/fml/time/time_delta.h"
#include "flutter/fml/time/time_point.h"
#include "third_party/skia/include/core/SkEncodedImageFormat.h"
#include "third_party/skia/include/core/SkImageEncoder.h"
#include "third_party/skia/include/core/SkPictureRecorder.h"

View File

@ -16,11 +16,11 @@
#include "flutter/fml/memory/weak_ptr.h"
#include "flutter/fml/raster_thread_merger.h"
#include "flutter/fml/synchronization/waitable_event.h"
#include "flutter/fml/time/time_delta.h"
#include "flutter/fml/time/time_point.h"
#include "flutter/lib/ui/snapshot_delegate.h"
#include "flutter/shell/common/pipeline.h"
#include "flutter/shell/common/surface.h"
#include "fml/time/time_delta.h"
#include "fml/time/time_point.h"
namespace flutter {

View File

@ -22,6 +22,7 @@
#include "flutter/fml/synchronization/sync_switch.h"
#include "flutter/fml/synchronization/waitable_event.h"
#include "flutter/fml/thread.h"
#include "flutter/fml/time/time_point.h"
#include "flutter/lib/ui/semantics/custom_accessibility_action.h"
#include "flutter/lib/ui/semantics/semantics_node.h"
#include "flutter/lib/ui/window/platform_message.h"
@ -33,7 +34,6 @@
#include "flutter/shell/common/rasterizer.h"
#include "flutter/shell/common/shell_io_manager.h"
#include "flutter/shell/common/surface.h"
#include "fml/time/time_point.h"
namespace flutter {

View File

@ -11,6 +11,7 @@
#include "flutter/flow/layers/container_layer.h"
#include "flutter/fml/build_config.h"
#include "flutter/fml/macros.h"
#include "flutter/fml/time/time_point.h"
#include "flutter/lib/ui/window/platform_message.h"
#include "flutter/shell/common/run_configuration.h"
#include "flutter/shell/common/shell.h"
@ -19,7 +20,6 @@
#include "flutter/testing/elf_loader.h"
#include "flutter/testing/test_dart_native_resolver.h"
#include "flutter/testing/thread_test.h"
#include "fml/time/time_point.h"
namespace flutter {
namespace testing {