OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ |
6 #define COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ | 6 #define COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 virtual ~AutofillAgent(); | 56 virtual ~AutofillAgent(); |
57 | 57 |
58 private: | 58 private: |
59 // content::RenderViewObserver: | 59 // content::RenderViewObserver: |
60 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; | 60 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
61 virtual void DidFinishDocumentLoad(blink::WebLocalFrame* frame) OVERRIDE; | 61 virtual void DidFinishDocumentLoad(blink::WebLocalFrame* frame) OVERRIDE; |
62 virtual void FrameDetached(blink::WebFrame* frame) OVERRIDE; | 62 virtual void FrameDetached(blink::WebFrame* frame) OVERRIDE; |
63 virtual void FrameWillClose(blink::WebFrame* frame) OVERRIDE; | 63 virtual void FrameWillClose(blink::WebFrame* frame) OVERRIDE; |
64 virtual void WillSubmitForm(blink::WebLocalFrame* frame, | 64 virtual void WillSubmitForm(blink::WebLocalFrame* frame, |
65 const blink::WebFormElement& form) OVERRIDE; | 65 const blink::WebFormElement& form) OVERRIDE; |
66 virtual void ZoomLevelChanged() OVERRIDE; | |
67 virtual void DidChangeScrollOffset(blink::WebLocalFrame* frame) OVERRIDE; | 66 virtual void DidChangeScrollOffset(blink::WebLocalFrame* frame) OVERRIDE; |
68 virtual void FocusedNodeChanged(const blink::WebNode& node) OVERRIDE; | 67 virtual void FocusedNodeChanged(const blink::WebNode& node) OVERRIDE; |
69 virtual void OrientationChangeEvent() OVERRIDE; | 68 virtual void OrientationChangeEvent() OVERRIDE; |
70 | 69 |
71 // PageClickListener: | 70 // PageClickListener: |
72 virtual void FormControlElementClicked( | 71 virtual void FormControlElementClicked( |
73 const blink::WebFormControlElement& element, | 72 const blink::WebFormControlElement& element, |
74 bool was_focused) OVERRIDE; | 73 bool was_focused) OVERRIDE; |
75 virtual void FormControlElementLostFocus() OVERRIDE; | 74 virtual void FormControlElementLostFocus() OVERRIDE; |
76 | 75 |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 NoCancelOnSubframeNavigateAfterDone); | 249 NoCancelOnSubframeNavigateAfterDone); |
251 FRIEND_TEST_ALL_PREFIXES(RequestAutocompleteRendererTest, | 250 FRIEND_TEST_ALL_PREFIXES(RequestAutocompleteRendererTest, |
252 InvokingTwiceOnlyShowsOnce); | 251 InvokingTwiceOnlyShowsOnce); |
253 | 252 |
254 DISALLOW_COPY_AND_ASSIGN(AutofillAgent); | 253 DISALLOW_COPY_AND_ASSIGN(AutofillAgent); |
255 }; | 254 }; |
256 | 255 |
257 } // namespace autofill | 256 } // namespace autofill |
258 | 257 |
259 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ | 258 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ |
OLD | NEW |