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

Unified Diff: chromecast/crash/android/cast_crash_reporter_client_android.h

Issue 917303002: Clean up redundant virtual specifiers for chromecast android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change dtor specifiers Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/browser/android/external_video_surface_container_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/crash/android/cast_crash_reporter_client_android.h
diff --git a/chromecast/crash/android/cast_crash_reporter_client_android.h b/chromecast/crash/android/cast_crash_reporter_client_android.h
index 4524ae70a266298505e01b3b1c5c468d792b433f..4f78334474bd88e46d20abfb26a30823e94819bb 100644
--- a/chromecast/crash/android/cast_crash_reporter_client_android.h
+++ b/chromecast/crash/android/cast_crash_reporter_client_android.h
@@ -14,16 +14,16 @@ class CastCrashReporterClientAndroid
: public crash_reporter::CrashReporterClient {
public:
CastCrashReporterClientAndroid();
- virtual ~CastCrashReporterClientAndroid();
+ ~CastCrashReporterClientAndroid() override;
// crash_reporter::CrashReporterClient implementation:
- virtual void GetProductNameAndVersion(const char** product_name,
- const char** version) override;
- virtual base::FilePath GetReporterLogFilename() override;
- virtual bool GetCrashDumpLocation(base::FilePath* crash_dir) override;
- virtual int GetAndroidMinidumpDescriptor() override;
- virtual bool GetCollectStatsConsent() override;
- virtual bool EnableBreakpadForProcess(
+ void GetProductNameAndVersion(const char** product_name,
+ const char** version) override;
+ base::FilePath GetReporterLogFilename() override;
+ bool GetCrashDumpLocation(base::FilePath* crash_dir) override;
+ int GetAndroidMinidumpDescriptor() override;
+ bool GetCollectStatsConsent() override;
+ bool EnableBreakpadForProcess(
const std::string& process_type) override;
private:
« no previous file with comments | « chromecast/browser/android/external_video_surface_container_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698