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

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

Issue 226093007: Convert Chrome usages of WebFrame to WebLocalFrame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/autofill_agent.h
diff --git a/components/autofill/content/renderer/autofill_agent.h b/components/autofill/content/renderer/autofill_agent.h
index ba01c7b3c65f70fad65b50a9dd3fba35fa20b901..a445fe7cb817e59a59433b582aba289c12fe7b3b 100644
--- a/components/autofill/content/renderer/autofill_agent.h
+++ b/components/autofill/content/renderer/autofill_agent.h
@@ -58,13 +58,13 @@ class AutofillAgent : public content::RenderViewObserver,
private:
// content::RenderViewObserver:
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void DidFinishDocumentLoad(blink::WebFrame* frame) OVERRIDE;
+ virtual void DidFinishDocumentLoad(blink::WebLocalFrame* frame) OVERRIDE;
virtual void FrameDetached(blink::WebFrame* frame) OVERRIDE;
virtual void FrameWillClose(blink::WebFrame* frame) OVERRIDE;
- virtual void WillSubmitForm(blink::WebFrame* frame,
+ virtual void WillSubmitForm(blink::WebLocalFrame* frame,
const blink::WebFormElement& form) OVERRIDE;
virtual void ZoomLevelChanged() OVERRIDE;
- virtual void DidChangeScrollOffset(blink::WebFrame* frame) OVERRIDE;
+ virtual void DidChangeScrollOffset(blink::WebLocalFrame* frame) OVERRIDE;
virtual void FocusedNodeChanged(const blink::WebNode& node) OVERRIDE;
virtual void OrientationChangeEvent(int orientation) OVERRIDE;
@@ -82,9 +82,9 @@ class AutofillAgent : public content::RenderViewObserver,
virtual void textFieldDidReceiveKeyDown(
const blink::WebInputElement& element,
const blink::WebKeyboardEvent& event) OVERRIDE;
- virtual void didRequestAutocomplete(
- blink::WebFrame* frame,
- const blink::WebFormElement& form) OVERRIDE;
+ virtual void didRequestAutocomplete(blink::WebLocalFrame* frame,
+ const blink::WebFormElement& form)
+ OVERRIDE;
jam 2014/04/05 00:12:39 again, please leave formatting the same which rena
jam 2014/04/07 21:16:33 this seems worse readability-wise, and i'm pretty
dcheng 2014/04/07 22:19:20 Done.
virtual void setIgnoreTextChanges(bool ignore) OVERRIDE;
virtual void didAssociateFormControls(
const blink::WebVector<blink::WebNode>& nodes) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698