mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
f185012d20
Change-Id: Ia18b5e22cefe1fb4dfa8d8ed9361789304eb8acc Reviewed-on: https://dart-review.googlesource.com/c/81826 Commit-Queue: Vyacheslav Egorov <vegorov@google.com> Commit-Queue: Martin Kustermann <kustermann@google.com> Auto-Submit: Vyacheslav Egorov <vegorov@google.com> Reviewed-by: Martin Kustermann <kustermann@google.com>
16 lines
427 B
C++
16 lines
427 B
C++
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef RUNTIME_BIN_CRASHPAD_H_
|
|
#define RUNTIME_BIN_CRASHPAD_H_
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
void InitializeCrashpadClient();
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|
|
|
|
#endif // RUNTIME_BIN_CRASHPAD_H_
|