Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(394)

Side by Side Diff: chromecast/crash/android/cast_crash_reporter_client_android.h

Issue 620673003: Chromecast: adds crash handling for Android build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address lei's comments Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROMECAST_CRASH_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_
6 #define CHROMECAST_CRASH_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_
7
8 #include "base/compiler_specific.h"
9 #include "components/crash/app/crash_reporter_client.h"
10
11 namespace chromecast {
12
13 class CastCrashReporterClientAndroid
14 : public crash_reporter::CrashReporterClient {
15 public:
16 CastCrashReporterClientAndroid();
17 virtual ~CastCrashReporterClientAndroid();
18
19 // crash_reporter::CrashReporterClient implementation:
20 virtual void GetProductNameAndVersion(const char** product_name,
21 const char** version) override;
22 virtual base::FilePath GetReporterLogFilename() override;
23 virtual bool GetCrashDumpLocation(base::FilePath* crash_dir) override;
24 virtual int GetAndroidMinidumpDescriptor() override;
25 virtual bool GetCollectStatsConsent() override;
26 virtual bool EnableBreakpadForProcess(
27 const std::string& process_type) override;
28
29 private:
30 DISALLOW_COPY_AND_ASSIGN(CastCrashReporterClientAndroid);
31 };
32
33 } // namespace chromecast
34
35 #endif // CHROMECAST_CRASH_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_
OLDNEW
« no previous file with comments | « chromecast/crash/android/DEPS ('k') | chromecast/crash/android/cast_crash_reporter_client_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698