1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "flutter/fml/backtrace.h"
6
7namespace fml {
8
9static std::string kKUnknownFrameName = "Unknown";
10
11std::string BacktraceHere(size_t offset) {
12 return "";
13}
14
15void InstallCrashHandler() {
16 // Not supported.
17}
18
19bool IsCrashHandlingSupported() {
20 return false;
21}
22
23} // namespace fml
24

source code of flutter_engine/flutter/fml/backtrace_stub.cc