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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 virtual void DidFinishDocumentLoad(blink::WebLocalFrame* frame) OVERRIDE; | 61 virtual void DidFinishDocumentLoad(blink::WebLocalFrame* frame) OVERRIDE; |
62 virtual void DidCommitProvisionalLoad(blink::WebLocalFrame* frame, | 62 virtual void DidCommitProvisionalLoad(blink::WebLocalFrame* frame, |
63 bool is_new_navigation) OVERRIDE; | 63 bool is_new_navigation) OVERRIDE; |
64 virtual void FrameDetached(blink::WebFrame* frame) OVERRIDE; | 64 virtual void FrameDetached(blink::WebFrame* frame) OVERRIDE; |
65 virtual void FrameWillClose(blink::WebFrame* frame) OVERRIDE; | 65 virtual void FrameWillClose(blink::WebFrame* frame) OVERRIDE; |
66 virtual void WillSubmitForm(blink::WebLocalFrame* frame, | 66 virtual void WillSubmitForm(blink::WebLocalFrame* frame, |
67 const blink::WebFormElement& form) OVERRIDE; | 67 const blink::WebFormElement& form) OVERRIDE; |
68 virtual void DidChangeScrollOffset(blink::WebLocalFrame* frame) OVERRIDE; | 68 virtual void DidChangeScrollOffset(blink::WebLocalFrame* frame) OVERRIDE; |
69 virtual void FocusedNodeChanged(const blink::WebNode& node) OVERRIDE; | 69 virtual void FocusedNodeChanged(const blink::WebNode& node) OVERRIDE; |
70 virtual void OrientationChangeEvent() OVERRIDE; | 70 virtual void OrientationChangeEvent() OVERRIDE; |
| 71 virtual void Resized() OVERRIDE; |
71 | 72 |
72 // PageClickListener: | 73 // PageClickListener: |
73 virtual void FormControlElementClicked( | 74 virtual void FormControlElementClicked( |
74 const blink::WebFormControlElement& element, | 75 const blink::WebFormControlElement& element, |
75 bool was_focused) OVERRIDE; | 76 bool was_focused) OVERRIDE; |
76 | 77 |
77 // blink::WebAutofillClient: | 78 // blink::WebAutofillClient: |
78 virtual void textFieldDidEndEditing( | 79 virtual void textFieldDidEndEditing( |
79 const blink::WebInputElement& element); | 80 const blink::WebInputElement& element); |
80 virtual void textFieldDidChange( | 81 virtual void textFieldDidChange( |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 NoCancelOnSubframeNavigateAfterDone); | 248 NoCancelOnSubframeNavigateAfterDone); |
248 FRIEND_TEST_ALL_PREFIXES(RequestAutocompleteRendererTest, | 249 FRIEND_TEST_ALL_PREFIXES(RequestAutocompleteRendererTest, |
249 InvokingTwiceOnlyShowsOnce); | 250 InvokingTwiceOnlyShowsOnce); |
250 | 251 |
251 DISALLOW_COPY_AND_ASSIGN(AutofillAgent); | 252 DISALLOW_COPY_AND_ASSIGN(AutofillAgent); |
252 }; | 253 }; |
253 | 254 |
254 } // namespace autofill | 255 } // namespace autofill |
255 | 256 |
256 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ | 257 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ |
OLD | NEW |