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

Unified Diff: components/crash/browser/crash_dump_manager_android.h

Issue 893303003: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | components/cronet/android/cronet_url_request_context_adapter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/browser/crash_dump_manager_android.h
diff --git a/components/crash/browser/crash_dump_manager_android.h b/components/crash/browser/crash_dump_manager_android.h
index 7476f81ed3f955974fa81d6a203d425c463f23ad..d7ae5c81df6f3766e573b8851446140437a81e2a 100644
--- a/components/crash/browser/crash_dump_manager_android.h
+++ b/components/crash/browser/crash_dump_manager_android.h
@@ -39,7 +39,7 @@ class CrashDumpManager : public content::BrowserChildProcessObserver,
// Should be created on the UI thread.
explicit CrashDumpManager(const base::FilePath& crash_dump_dir);
- virtual ~CrashDumpManager();
+ ~CrashDumpManager() override;
// Returns a file that should be used to generate a minidump for the process
// |child_process_id|.
@@ -52,15 +52,15 @@ class CrashDumpManager : public content::BrowserChildProcessObserver,
base::ProcessHandle pid);
// content::BrowserChildProcessObserver implementation:
- virtual void BrowserChildProcessHostDisconnected(
+ void BrowserChildProcessHostDisconnected(
const content::ChildProcessData& data) override;
- virtual void BrowserChildProcessCrashed(
+ void BrowserChildProcessCrashed(
const content::ChildProcessData& data) override;
// NotificationObserver implementation:
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
// Called on child process exit (including crash).
void OnChildExit(int child_process_id, base::ProcessHandle pid);
« no previous file with comments | « no previous file | components/cronet/android/cronet_url_request_context_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698