Skip to content

Commit

Permalink
[flutter_runner] Explicitly set |trace_skia| to false (flutter#12349)
Browse files Browse the repository at this point in the history
Explicitly set |Application|'s |flutter::Settings| |trace_skia| field to
false (it currently defaults to false), in order to slightly simplify
the enabling skia trace events workflow.

PT-145 #comment-patch

Change-Id: Ib40f9ed3dc6f824056465db2cd45309c78b7e3b4
  • Loading branch information
iskakaushik authored Sep 19, 2019
1 parent c33f2d2 commit eed16d3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions shell/platform/fuchsia/flutter/component.cc
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,10 @@ Application::Application(
settings_.observatory_host = "127.0.0.1";
#endif

// Set this to true to enable category "skia" trace events.
// TODO(PT-145): Explore enabling this by default.
settings_.trace_skia = false;

settings_.icu_data_path = "";

settings_.assets_dir = application_assets_directory_.get();
Expand Down

0 comments on commit eed16d3

Please sign in to comment.