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

Side by Side Diff: components/autofill/content/browser/content_autofill_driver.h

Issue 2422363002: Trigger HTTP-bad warning when querying credit card autofill (Closed)
Patch Set: add missing blank line Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | components/autofill/content/browser/content_autofill_driver.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_
6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 void RendererShouldAcceptDataListSuggestion( 61 void RendererShouldAcceptDataListSuggestion(
62 const base::string16& value) override; 62 const base::string16& value) override;
63 void RendererShouldClearFilledForm() override; 63 void RendererShouldClearFilledForm() override;
64 void RendererShouldClearPreviewedForm() override; 64 void RendererShouldClearPreviewedForm() override;
65 void RendererShouldFillFieldWithValue(const base::string16& value) override; 65 void RendererShouldFillFieldWithValue(const base::string16& value) override;
66 void RendererShouldPreviewFieldWithValue( 66 void RendererShouldPreviewFieldWithValue(
67 const base::string16& value) override; 67 const base::string16& value) override;
68 void PopupHidden() override; 68 void PopupHidden() override;
69 gfx::RectF TransformBoundingBoxToViewportCoordinates( 69 gfx::RectF TransformBoundingBoxToViewportCoordinates(
70 const gfx::RectF& bounding_box) override; 70 const gfx::RectF& bounding_box) override;
71 void DidInteractWithCreditCardForm() override;
71 72
72 // mojom::AutofillDriver: 73 // mojom::AutofillDriver:
73 void FirstUserGestureObserved() override; 74 void FirstUserGestureObserved() override;
74 void FormsSeen(const std::vector<FormData>& forms, 75 void FormsSeen(const std::vector<FormData>& forms,
75 base::TimeTicks timestamp) override; 76 base::TimeTicks timestamp) override;
76 void WillSubmitForm(const FormData& form, base::TimeTicks timestamp) override; 77 void WillSubmitForm(const FormData& form, base::TimeTicks timestamp) override;
77 void FormSubmitted(const FormData& form) override; 78 void FormSubmitted(const FormData& form) override;
78 void TextFieldDidChange(const FormData& form, 79 void TextFieldDidChange(const FormData& form,
79 const FormFieldData& field, 80 const FormFieldData& field,
80 base::TimeTicks timestamp) override; 81 base::TimeTicks timestamp) override;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 AutofillExternalDelegate autofill_external_delegate_; 132 AutofillExternalDelegate autofill_external_delegate_;
132 133
133 mojo::Binding<mojom::AutofillDriver> binding_; 134 mojo::Binding<mojom::AutofillDriver> binding_;
134 135
135 mojom::AutofillAgentPtr autofill_agent_; 136 mojom::AutofillAgentPtr autofill_agent_;
136 }; 137 };
137 138
138 } // namespace autofill 139 } // namespace autofill
139 140
140 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ 141 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_
OLDNEW
« no previous file with comments | « no previous file | components/autofill/content/browser/content_autofill_driver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698