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

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

Issue 707173004: Refactor Autofill for out of process iframes (OOPIF). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mem leak Created 6 years 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/test_password_generation_agent.h
diff --git a/components/autofill/content/renderer/test_password_generation_agent.h b/components/autofill/content/renderer/test_password_generation_agent.h
index 633acf9453f682254c34989df9ddcba0eba14d28..731dffd286cc65c40e12dbc4eda76e0f14d00972 100644
--- a/components/autofill/content/renderer/test_password_generation_agent.h
+++ b/components/autofill/content/renderer/test_password_generation_agent.h
@@ -15,10 +15,10 @@ namespace autofill {
class TestPasswordGenerationAgent : public PasswordGenerationAgent {
public:
- explicit TestPasswordGenerationAgent(content::RenderView* render_view);
+ explicit TestPasswordGenerationAgent(content::RenderFrame* render_frame);
~TestPasswordGenerationAgent() override;
- // content::RenderViewObserver implementation:
+ // content::RenderFrameObserver implementation:
bool OnMessageReceived(const IPC::Message& message) override;
bool Send(IPC::Message* message) override;
@@ -30,7 +30,7 @@ class TestPasswordGenerationAgent : public PasswordGenerationAgent {
// PasswordGenreationAgent implementation:
// Always return true to allow loading of data URLs.
- bool ShouldAnalyzeDocument(const blink::WebDocument& document) const override;
+ bool ShouldAnalyzeDocument() const override;
private:
ScopedVector<IPC::Message> messages_;

Powered by Google App Engine
This is Rietveld 408576698