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

Unified Diff: chrome/browser/chromeos/app_mode/kiosk_external_update_validator.h

Issue 827293003: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/app_mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comment 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
Index: chrome/browser/chromeos/app_mode/kiosk_external_update_validator.h
diff --git a/chrome/browser/chromeos/app_mode/kiosk_external_update_validator.h b/chrome/browser/chromeos/app_mode/kiosk_external_update_validator.h
index 3d58a9d4e40a71e5c3aebf231530b0b4c4abc995..4058d404c4780dc2cd6f31218752e828b4fcdac9 100644
--- a/chrome/browser/chromeos/app_mode/kiosk_external_update_validator.h
+++ b/chrome/browser/chromeos/app_mode/kiosk_external_update_validator.h
@@ -48,15 +48,15 @@ class KioskExternalUpdateValidator
void Start();
private:
- virtual ~KioskExternalUpdateValidator();
+ ~KioskExternalUpdateValidator() override;
// SandboxedUnpackerClient overrides.
- virtual void OnUnpackFailure(const base::string16& error_message) override;
- virtual void OnUnpackSuccess(const base::FilePath& temp_dir,
- const base::FilePath& extension_dir,
- const base::DictionaryValue* original_manifest,
- const extensions::Extension* extension,
- const SkBitmap& install_icon) override;
+ void OnUnpackFailure(const base::string16& error_message) override;
+ void OnUnpackSuccess(const base::FilePath& temp_dir,
+ const base::FilePath& extension_dir,
+ const base::DictionaryValue* original_manifest,
+ const extensions::Extension* extension,
+ const SkBitmap& install_icon) override;
// Task runner for executing file I/O tasks.
const scoped_refptr<base::SequencedTaskRunner> backend_task_runner_;
« no previous file with comments | « chrome/browser/chromeos/app_mode/kiosk_diagnosis_runner.cc ('k') | chrome/browser/chromeos/app_mode/kiosk_external_updater.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698