blob: 47e285d61f0b3c516097f6cbf424c26d56dea10e (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// Copyright 2013 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 COMPONENTS_BREAKPAD_BREAKPAD_CLIENT_H_
#define COMPONENTS_BREAKPAD_BREAKPAD_CLIENT_H_
#include "base/strings/string16.h"
#include "build/build_config.h"
namespace base {
class FilePath;
}
namespace breakpad {
class BreakpadClient;
// Setter and getter for the client. The client should be set early, before any
// breakpad code is called, and should stay alive throughout the entire runtime.
void SetBreakpadClient(BreakpadClient* client);
// Breakpad's embedder API should only be used by breakpad.
BreakpadClient* GetBreakpadClient();
// Interface that the embedder implements.
class BreakpadClient {
public:
BreakpadClient();
virtual ~BreakpadClient();
#if defined(OS_WIN)
// Returns true if an alternative location to store the minidump files was
// specified. Returns true if |crash_dir| was set.
virtual bool GetAlternativeCrashDumpLocation(base::FilePath* crash_dir);
// Returns a textual description of the product type and version to include
// in the crash report.
virtual void GetProductNameAndVersion(const base::FilePath& exe_path,
base::string16* product_name,
base::string16* version,
base::string16* special_build);
#endif
// The location where minidump files should be written. Returns true if
// |crash_dir| was set.
virtual bool GetCrashDumpLocation(base::FilePath* crash_dir);
#if defined(OS_POSIX)
// Sets a function that'll be invoked to dump the current process when
// without crashing.
virtual void SetDumpWithoutCrashingFunction(void (*function)());
#endif
};
} // namespace breakpad
#endif // COMPONENTS_BREAKPAD_BREAKPAD_CLIENT_H_
|