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

Side by Side Diff: components/autofill/ios/browser/autofill_driver_ios.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_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_ 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_
6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_ 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "components/autofill/core/browser/autofill_client.h" 10 #include "components/autofill/core/browser/autofill_client.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 const FormData& data) override; 44 const FormData& data) override;
45 void PropagateAutofillPredictions( 45 void PropagateAutofillPredictions(
46 const std::vector<autofill::FormStructure*>& forms) override; 46 const std::vector<autofill::FormStructure*>& forms) override;
47 void SendAutofillTypePredictionsToRenderer( 47 void SendAutofillTypePredictionsToRenderer(
48 const std::vector<FormStructure*>& forms) override; 48 const std::vector<FormStructure*>& forms) override;
49 void RendererShouldClearFilledForm() override; 49 void RendererShouldClearFilledForm() override;
50 void RendererShouldClearPreviewedForm() override; 50 void RendererShouldClearPreviewedForm() override;
51 void RendererShouldAcceptDataListSuggestion( 51 void RendererShouldAcceptDataListSuggestion(
52 const base::string16& value) override; 52 const base::string16& value) override;
53 base::SequencedWorkerPool* GetBlockingPool() override; 53 base::SequencedWorkerPool* GetBlockingPool() override;
54 void DidInteractWithCreditCardForm() override;
54 55
55 AutofillManager* autofill_manager() { return &autofill_manager_; } 56 AutofillManager* autofill_manager() { return &autofill_manager_; }
56 57
57 void RendererShouldFillFieldWithValue(const base::string16& value) override; 58 void RendererShouldFillFieldWithValue(const base::string16& value) override;
58 void RendererShouldPreviewFieldWithValue( 59 void RendererShouldPreviewFieldWithValue(
59 const base::string16& value) override; 60 const base::string16& value) override;
60 void PopupHidden() override; 61 void PopupHidden() override;
61 gfx::RectF TransformBoundingBoxToViewportCoordinates( 62 gfx::RectF TransformBoundingBoxToViewportCoordinates(
62 const gfx::RectF& bounding_box) override; 63 const gfx::RectF& bounding_box) override;
63 64
(...skipping 15 matching lines...) Expand all
79 // AutofillManager instance via which this object drives the shared Autofill 80 // AutofillManager instance via which this object drives the shared Autofill
80 // code. 81 // code.
81 AutofillManager autofill_manager_; 82 AutofillManager autofill_manager_;
82 // AutofillExternalDelegate instance that is passed to the AutofillManager. 83 // AutofillExternalDelegate instance that is passed to the AutofillManager.
83 AutofillExternalDelegate autofill_external_delegate_; 84 AutofillExternalDelegate autofill_external_delegate_;
84 }; 85 };
85 86
86 } // namespace autofill 87 } // namespace autofill
87 88
88 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_ 89 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_
OLDNEW
« no previous file with comments | « components/autofill/core/browser/test_autofill_driver.cc ('k') | components/autofill/ios/browser/autofill_driver_ios.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698