| Index: chrome/browser/input_window_dialog_win.cc
|
| ===================================================================
|
| --- chrome/browser/input_window_dialog_win.cc (revision 17056)
|
| +++ chrome/browser/input_window_dialog_win.cc (working copy)
|
| @@ -114,14 +114,14 @@
|
| bool ContentView::IsDialogButtonEnabled(
|
| MessageBoxFlags::DialogButton button) const {
|
| if (button == MessageBoxFlags::DIALOGBUTTON_OK &&
|
| - !delegate_->delegate()->IsValid(text_field_->GetText())) {
|
| + !delegate_->delegate()->IsValid(text_field_->text())) {
|
| return false;
|
| }
|
| return true;
|
| }
|
|
|
| bool ContentView::Accept() {
|
| - delegate_->delegate()->InputAccepted(text_field_->GetText());
|
| + delegate_->delegate()->InputAccepted(text_field_->text());
|
| return true;
|
| }
|
|
|
|
|