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

Unified Diff: chrome/browser/chromeos/attestation/platform_verification_flow.cc

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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: chrome/browser/chromeos/attestation/platform_verification_flow.cc
diff --git a/chrome/browser/chromeos/attestation/platform_verification_flow.cc b/chrome/browser/chromeos/attestation/platform_verification_flow.cc
index cc49b8e46a497ed8a0aa21a77af7b36ebe06332b..4c5b7751c8f9ab6ec381baef7f79a9f1b48101c2 100644
--- a/chrome/browser/chromeos/attestation/platform_verification_flow.cc
+++ b/chrome/browser/chromeos/attestation/platform_verification_flow.cc
@@ -80,15 +80,15 @@ class DefaultDelegate : public PlatformVerificationFlow::Delegate {
virtual void ShowConsentPrompt(
content::WebContents* web_contents,
const PlatformVerificationFlow::Delegate::ConsentCallback& callback)
- OVERRIDE {
+ override {
PlatformVerificationDialog::ShowDialog(web_contents, callback);
}
- virtual PrefService* GetPrefs(content::WebContents* web_contents) OVERRIDE {
+ virtual PrefService* GetPrefs(content::WebContents* web_contents) override {
return user_prefs::UserPrefs::Get(web_contents->GetBrowserContext());
}
- virtual const GURL& GetURL(content::WebContents* web_contents) OVERRIDE {
+ virtual const GURL& GetURL(content::WebContents* web_contents) override {
const GURL& url = web_contents->GetLastCommittedURL();
if (!url.is_valid())
return web_contents->GetVisibleURL();
@@ -96,18 +96,18 @@ class DefaultDelegate : public PlatformVerificationFlow::Delegate {
}
virtual user_manager::User* GetUser(
- content::WebContents* web_contents) OVERRIDE {
+ content::WebContents* web_contents) override {
return ProfileHelper::Get()->GetUserByProfile(
Profile::FromBrowserContext(web_contents->GetBrowserContext()));
}
virtual HostContentSettingsMap* GetContentSettings(
- content::WebContents* web_contents) OVERRIDE {
+ content::WebContents* web_contents) override {
return Profile::FromBrowserContext(web_contents->GetBrowserContext())->
GetHostContentSettingsMap();
}
- virtual bool IsGuestOrIncognito(content::WebContents* web_contents) OVERRIDE {
+ virtual bool IsGuestOrIncognito(content::WebContents* web_contents) override {
Profile* profile =
Profile::FromBrowserContext(web_contents->GetBrowserContext());
return (profile->IsOffTheRecord() || profile->IsGuestSession());

Powered by Google App Engine
This is Rietveld 408576698