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

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

Issue 2713843003: [Chromecast] Don't override RegisterCrashKeys() on Android. (Closed)
Patch Set: Remove RegisterCastCrashKeys() Created 3 years, 9 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
« no previous file with comments | « no previous file | chromecast/app/android/cast_crash_reporter_client_android.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | chromecast/app/android/cast_crash_reporter_client_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698