OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ | 5 #ifndef CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ |
6 #define CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ | 6 #define CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 base::FilePath* crash_dir); | 23 base::FilePath* crash_dir); |
24 | 24 |
25 // crash_reporter::CrashReporterClient implementation: | 25 // crash_reporter::CrashReporterClient implementation: |
26 void GetProductNameAndVersion(const char** product_name, | 26 void GetProductNameAndVersion(const char** product_name, |
27 const char** version) override; | 27 const char** version) override; |
28 base::FilePath GetReporterLogFilename() override; | 28 base::FilePath GetReporterLogFilename() override; |
29 bool GetCrashDumpLocation(base::FilePath* crash_dir) override; | 29 bool GetCrashDumpLocation(base::FilePath* crash_dir) override; |
30 int GetAndroidMinidumpDescriptor() override; | 30 int GetAndroidMinidumpDescriptor() override; |
31 bool GetCollectStatsConsent() override; | 31 bool GetCollectStatsConsent() override; |
32 bool EnableBreakpadForProcess(const std::string& process_type) override; | 32 bool EnableBreakpadForProcess(const std::string& process_type) override; |
33 size_t RegisterCrashKeys() override; | |
34 | 33 |
35 private: | 34 private: |
36 std::string process_type_; | 35 std::string process_type_; |
37 | 36 |
38 DISALLOW_COPY_AND_ASSIGN(CastCrashReporterClientAndroid); | 37 DISALLOW_COPY_AND_ASSIGN(CastCrashReporterClientAndroid); |
39 }; | 38 }; |
40 | 39 |
41 } // namespace chromecast | 40 } // namespace chromecast |
42 | 41 |
43 #endif // CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ | 42 #endif // CHROMECAST_APP_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_ |
OLD | NEW |