OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 CHROME_BROWSER_UI_VIEWS_PAYMENTS_CVC_UNMASK_VIEW_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PAYMENTS_CVC_UNMASK_VIEW_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_CVC_UNMASK_VIEW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_CVC_UNMASK_VIEW_CONTROLLER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 void FillContentView(views::View* content_view) override; | 79 void FillContentView(views::View* content_view) override; |
80 std::unique_ptr<views::Button> CreatePrimaryButton() override; | 80 std::unique_ptr<views::Button> CreatePrimaryButton() override; |
81 void ButtonPressed(views::Button* sender, const ui::Event& event) override; | 81 void ButtonPressed(views::Button* sender, const ui::Event& event) override; |
82 | 82 |
83 private: | 83 private: |
84 // Called when the user confirms their CVC. This will pass the value to the | 84 // Called when the user confirms their CVC. This will pass the value to the |
85 // active FullCardRequest. | 85 // active FullCardRequest. |
86 void CvcConfirmed(); | 86 void CvcConfirmed(); |
87 | 87 |
88 bool GetSheetId(DialogViewID* sheet_id) override; | 88 bool GetSheetId(DialogViewID* sheet_id) override; |
| 89 views::View* GetFirstFocusedView() override; |
89 | 90 |
90 views::Textfield* cvc_field_; // owned by the view hierarchy, outlives this. | 91 views::Textfield* cvc_field_; // owned by the view hierarchy, outlives this. |
91 autofill::CreditCard credit_card_; | 92 autofill::CreditCard credit_card_; |
92 content::WebContents* web_contents_; | 93 content::WebContents* web_contents_; |
93 // The identity provider, used for Payments integration. | 94 // The identity provider, used for Payments integration. |
94 std::unique_ptr<IdentityProvider> identity_provider_; | 95 std::unique_ptr<IdentityProvider> identity_provider_; |
95 autofill::payments::PaymentsClient payments_client_; | 96 autofill::payments::PaymentsClient payments_client_; |
96 autofill::payments::FullCardRequest full_card_request_; | 97 autofill::payments::FullCardRequest full_card_request_; |
97 base::WeakPtr<autofill::CardUnmaskDelegate> unmask_delegate_; | 98 base::WeakPtr<autofill::CardUnmaskDelegate> unmask_delegate_; |
98 | 99 |
99 base::WeakPtrFactory<CvcUnmaskViewController> weak_ptr_factory_; | 100 base::WeakPtrFactory<CvcUnmaskViewController> weak_ptr_factory_; |
100 | 101 |
101 DISALLOW_COPY_AND_ASSIGN(CvcUnmaskViewController); | 102 DISALLOW_COPY_AND_ASSIGN(CvcUnmaskViewController); |
102 }; | 103 }; |
103 | 104 |
104 } // namespace payments | 105 } // namespace payments |
105 | 106 |
106 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_CVC_UNMASK_VIEW_CONTROLLER_H_ | 107 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_CVC_UNMASK_VIEW_CONTROLLER_H_ |
OLD | NEW |