OLD | NEW |
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 #include "chrome/browser/ui/autofill/password_generation_popup_controller_impl.h
" | 5 #include "chrome/browser/ui/autofill/password_generation_popup_controller_impl.h
" |
6 | 6 |
7 #include <math.h> | 7 #include <math.h> |
8 | 8 |
9 #include "base/i18n/rtl.h" | 9 #include "base/i18n/rtl.h" |
10 #include "base/strings/string_split.h" | 10 #include "base/strings/string_split.h" |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 } | 266 } |
267 | 267 |
268 base::string16 PasswordGenerationPopupControllerImpl::SuggestedText() { | 268 base::string16 PasswordGenerationPopupControllerImpl::SuggestedText() { |
269 return l10n_util::GetStringUTF16(IDS_PASSWORD_GENERATION_SUGGESTION); | 269 return l10n_util::GetStringUTF16(IDS_PASSWORD_GENERATION_SUGGESTION); |
270 } | 270 } |
271 | 271 |
272 const base::string16& PasswordGenerationPopupControllerImpl::HelpText() { | 272 const base::string16& PasswordGenerationPopupControllerImpl::HelpText() { |
273 return help_text_; | 273 return help_text_; |
274 } | 274 } |
275 | 275 |
| 276 base::string16 PasswordGenerationPopupControllerImpl::AccessibleName() { |
| 277 return l10n_util::GetStringUTF16(IDS_PASSWORD_GENERATION_ACCESSIBLE_TITLE); |
| 278 } |
| 279 |
276 const gfx::Range& PasswordGenerationPopupControllerImpl::HelpTextLinkRange() { | 280 const gfx::Range& PasswordGenerationPopupControllerImpl::HelpTextLinkRange() { |
277 return link_range_; | 281 return link_range_; |
278 } | 282 } |
279 | 283 |
280 } // namespace autofill | 284 } // namespace autofill |
OLD | NEW |