blob: 13063846f9cce70121ad3f6a991ad8dcc5824d77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMECAST_CRASH_CAST_CRASH_KEYS_H_
#define CHROMECAST_CRASH_CAST_CRASH_KEYS_H_
#include <stddef.h>
#include "base/debug/crash_logging.h"
namespace chromecast {
namespace crash_keys {
size_t RegisterCastCrashKeys();
extern const char kCurrentApp[];
extern const char kLastApp[];
extern const char kPreviousApp[];
} // namespace chromecast
} // namespace crash_keys
#endif // CHROMECAST_CRASH_CAST_CRASH_KEYS_H_
|