summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/android/shell/chrome_main_delegate_chrome_shell_android.h4
-rw-r--r--chrome/android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.h6
-rw-r--r--chrome/app/android/chrome_main_delegate_android.h8
-rw-r--r--chrome/app/chrome_crash_reporter_client.h2
-rw-r--r--chrome/browser/enhanced_bookmarks/android/bookmark_image_service_factory.h2
5 files changed, 11 insertions, 11 deletions
diff --git a/chrome/android/shell/chrome_main_delegate_chrome_shell_android.h b/chrome/android/shell/chrome_main_delegate_chrome_shell_android.h
index 1bbe6b1..a4ee791 100644
--- a/chrome/android/shell/chrome_main_delegate_chrome_shell_android.h
+++ b/chrome/android/shell/chrome_main_delegate_chrome_shell_android.h
@@ -10,9 +10,9 @@
class ChromeMainDelegateChromeShellAndroid : public ChromeMainDelegateAndroid {
public:
ChromeMainDelegateChromeShellAndroid();
- virtual ~ChromeMainDelegateChromeShellAndroid();
+ ~ChromeMainDelegateChromeShellAndroid() override;
- virtual bool BasicStartupComplete(int* exit_code) override;
+ bool BasicStartupComplete(int* exit_code) override;
private:
DISALLOW_COPY_AND_ASSIGN(ChromeMainDelegateChromeShellAndroid);
diff --git a/chrome/android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.h b/chrome/android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.h
index 6b65925..bec75bf0 100644
--- a/chrome/android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.h
+++ b/chrome/android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.h
@@ -11,11 +11,11 @@ class ChromeMainDelegateChromeSyncShellAndroid
: public ChromeMainDelegateAndroid {
public:
ChromeMainDelegateChromeSyncShellAndroid();
- virtual ~ChromeMainDelegateChromeSyncShellAndroid();
+ ~ChromeMainDelegateChromeSyncShellAndroid() override;
- virtual bool RegisterApplicationNativeMethods(JNIEnv* env) override;
+ bool RegisterApplicationNativeMethods(JNIEnv* env) override;
- virtual bool BasicStartupComplete(int* exit_code) override;
+ bool BasicStartupComplete(int* exit_code) override;
private:
DISALLOW_COPY_AND_ASSIGN(ChromeMainDelegateChromeSyncShellAndroid);
diff --git a/chrome/app/android/chrome_main_delegate_android.h b/chrome/app/android/chrome_main_delegate_android.h
index b268ab1..450e53a 100644
--- a/chrome/app/android/chrome_main_delegate_android.h
+++ b/chrome/app/android/chrome_main_delegate_android.h
@@ -19,13 +19,13 @@ class ChromeMainDelegateAndroid : public ChromeMainDelegate {
protected:
ChromeMainDelegateAndroid();
- virtual ~ChromeMainDelegateAndroid();
+ ~ChromeMainDelegateAndroid() override;
- virtual bool BasicStartupComplete(int* exit_code) override;
+ bool BasicStartupComplete(int* exit_code) override;
- virtual void SandboxInitialized(const std::string& process_type) override;
+ void SandboxInitialized(const std::string& process_type) override;
- virtual int RunProcess(
+ int RunProcess(
const std::string& process_type,
const content::MainFunctionParams& main_function_params) override;
diff --git a/chrome/app/chrome_crash_reporter_client.h b/chrome/app/chrome_crash_reporter_client.h
index d3eb42f..9e45ed0 100644
--- a/chrome/app/chrome_crash_reporter_client.h
+++ b/chrome/app/chrome_crash_reporter_client.h
@@ -58,7 +58,7 @@ class ChromeCrashReporterClient : public crash_reporter::CrashReporterClient {
#endif
#if defined(OS_ANDROID)
- virtual int GetAndroidMinidumpDescriptor() override;
+ int GetAndroidMinidumpDescriptor() override;
#endif
#if defined(OS_MACOSX)
diff --git a/chrome/browser/enhanced_bookmarks/android/bookmark_image_service_factory.h b/chrome/browser/enhanced_bookmarks/android/bookmark_image_service_factory.h
index af5cc18..5680138 100644
--- a/chrome/browser/enhanced_bookmarks/android/bookmark_image_service_factory.h
+++ b/chrome/browser/enhanced_bookmarks/android/bookmark_image_service_factory.h
@@ -16,7 +16,7 @@ class BookmarkImageServiceFactory : public BrowserContextKeyedServiceFactory {
static BookmarkImageService* GetForBrowserContext(
content::BrowserContext* context);
- virtual ~BookmarkImageServiceFactory();
+ ~BookmarkImageServiceFactory() override;
private:
friend struct DefaultSingletonTraits<BookmarkImageServiceFactory>;