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

Unified Diff: athena/extensions/chrome/athena_extension_install_ui.h

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase 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 side-by-side diff with in-line comments
Download patch
Index: athena/extensions/chrome/athena_extension_install_ui.h
diff --git a/athena/extensions/chrome/athena_extension_install_ui.h b/athena/extensions/chrome/athena_extension_install_ui.h
index 9d66c7de036836465be50fdd4977b383a65a29df..f17965d243e0d7bcbb2cd66a731767da2cc4f498 100644
--- a/athena/extensions/chrome/athena_extension_install_ui.h
+++ b/athena/extensions/chrome/athena_extension_install_ui.h
@@ -16,17 +16,16 @@ namespace athena {
class AthenaExtensionInstallUI : public extensions::ExtensionInstallUI {
public:
AthenaExtensionInstallUI();
- virtual ~AthenaExtensionInstallUI();
+ ~AthenaExtensionInstallUI() override;
// ExtensionInstallUI:
- virtual void OnInstallSuccess(const extensions::Extension* extension,
- const SkBitmap* icon) override;
- virtual void OnInstallFailure(
- const extensions::CrxInstallerError& error) override;
- virtual void SetUseAppInstalledBubble(bool use_bubble) override;
- virtual void OpenAppInstalledUI(const std::string& app_id) override;
- virtual void SetSkipPostInstallUI(bool skip_ui) override;
- virtual gfx::NativeWindow GetDefaultInstallDialogParent() override;
+ void OnInstallSuccess(const extensions::Extension* extension,
+ const SkBitmap* icon) override;
+ void OnInstallFailure(const extensions::CrxInstallerError& error) override;
+ void SetUseAppInstalledBubble(bool use_bubble) override;
+ void OpenAppInstalledUI(const std::string& app_id) override;
+ void SetSkipPostInstallUI(bool skip_ui) override;
+ gfx::NativeWindow GetDefaultInstallDialogParent() override;
private:
// Whether or not to show the default UI after completing the installation.
« no previous file with comments | « athena/extensions/chrome/athena_chrome_app_window_client.h ('k') | athena/extensions/chrome/athena_extension_install_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698