| 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 | |
| 7 | namespace fml { |
| 8 | |
| 9 | static std::string kKUnknownFrameName = "Unknown"; |
| 10 | |
| 11 | std::string BacktraceHere(size_t offset) { |
| 12 | return ""; |
| 13 | } |
| 14 | |
| 15 | void InstallCrashHandler() { |
| 16 | // Not supported. |
| 17 | } |
| 18 | |
| 19 | bool IsCrashHandlingSupported() { |
| 20 | return false; |
| 21 | } |
| 22 | |
| 23 | } // namespace fml |
| 24 |
