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

Unified Diff: components/autofill/content/renderer/password_autofill_agent.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: components/autofill/content/renderer/password_autofill_agent.h
diff --git a/components/autofill/content/renderer/password_autofill_agent.h b/components/autofill/content/renderer/password_autofill_agent.h
index 616c7f8c0f9a7969d2e0943a2890b1a8589ebf46..fb557f6141c0993765a1d7a4006a34d82353c12f 100644
--- a/components/autofill/content/renderer/password_autofill_agent.h
+++ b/components/autofill/content/renderer/password_autofill_agent.h
@@ -132,18 +132,18 @@ class PasswordAutofillAgent : public content::RenderViewObserver {
};
// RenderViewObserver:
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void DidStartProvisionalLoad(blink::WebLocalFrame* frame) OVERRIDE;
- virtual void DidStartLoading() OVERRIDE;
- virtual void DidFinishDocumentLoad(blink::WebLocalFrame* frame) OVERRIDE;
- virtual void DidFinishLoad(blink::WebLocalFrame* frame) OVERRIDE;
- virtual void DidStopLoading() OVERRIDE;
- virtual void FrameDetached(blink::WebFrame* frame) OVERRIDE;
- virtual void FrameWillClose(blink::WebFrame* frame) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual void DidStartProvisionalLoad(blink::WebLocalFrame* frame) override;
+ virtual void DidStartLoading() override;
+ virtual void DidFinishDocumentLoad(blink::WebLocalFrame* frame) override;
+ virtual void DidFinishLoad(blink::WebLocalFrame* frame) override;
+ virtual void DidStopLoading() override;
+ virtual void FrameDetached(blink::WebFrame* frame) override;
+ virtual void FrameWillClose(blink::WebFrame* frame) override;
virtual void WillSendSubmitEvent(blink::WebLocalFrame* frame,
- const blink::WebFormElement& form) OVERRIDE;
+ const blink::WebFormElement& form) override;
virtual void WillSubmitForm(blink::WebLocalFrame* frame,
- const blink::WebFormElement& form) OVERRIDE;
+ const blink::WebFormElement& form) override;
// RenderView IPC handlers:
void OnFillPasswordForm(const PasswordFormFillData& form_data);

Powered by Google App Engine
This is Rietveld 408576698