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

Unified Diff: views/controls/message_box_view.cc

Issue 115825: Move text_field.cc and rename the class to Textfield in preparation for porti... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « views/controls/message_box_view.h ('k') | views/controls/text_field.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/message_box_view.cc
===================================================================
--- views/controls/message_box_view.cc (revision 17006)
+++ views/controls/message_box_view.cc (working copy)
@@ -137,7 +137,7 @@
}
if (dialog_flags & MessageBoxFlags::kFlagHasPromptField) {
- prompt_field_ = new views::TextField;
+ prompt_field_ = new views::Textfield;
prompt_field_->SetText(default_prompt);
}
@@ -169,7 +169,7 @@
column_set->AddColumn(GridLayout::FILL, GridLayout::FILL, 1,
GridLayout::FIXED, message_width_, 0);
- // Column set for prompt textfield, if one has been set.
+ // Column set for prompt Textfield, if one has been set.
const int textfield_column_view_set_id = 1;
if (prompt_field_) {
column_set = layout->AddColumnSet(textfield_column_view_set_id);
« no previous file with comments | « views/controls/message_box_view.h ('k') | views/controls/text_field.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698