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

Side by Side Diff: components/autofill/core/browser/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
OLDNEW
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_CORE_BROWSER_AUTOFILL_DRIVER_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "components/autofill/core/common/form_data.h" 10 #include "components/autofill/core/common/form_data.h"
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 const base::string16& value) = 0; 92 const base::string16& value) = 0;
93 93
94 // Informs the renderer that the popup has been hidden. 94 // Informs the renderer that the popup has been hidden.
95 virtual void PopupHidden() = 0; 95 virtual void PopupHidden() = 0;
96 96
97 // Transform bounding box coordinates to real viewport coordinates. In 97 // Transform bounding box coordinates to real viewport coordinates. In
98 // the case of a page spanning multiple renderer processes, subframe 98 // the case of a page spanning multiple renderer processes, subframe
99 // renderers cannot do this transformation themselves. 99 // renderers cannot do this transformation themselves.
100 virtual gfx::RectF TransformBoundingBoxToViewportCoordinates( 100 virtual gfx::RectF TransformBoundingBoxToViewportCoordinates(
101 const gfx::RectF& bounding_box) = 0; 101 const gfx::RectF& bounding_box) = 0;
102
103 // Called when the user interacted with a credit card form, so that
104 // the current page's security state can be updated appropriately.
105 virtual void DidInteractWithCreditCardForm() = 0;
102 }; 106 };
103 107
104 } // namespace autofill 108 } // namespace autofill
105 109
106 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_ 110 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698