summaryrefslogtreecommitdiffstats
path: root/chrome/views/text_field.h
diff options
context:
space:
mode:
authorsky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-26 00:26:26 +0000
committersky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-26 00:26:26 +0000
commit802cbf0fc2d88085b7ef5c5fa01d32b261287d6f (patch)
tree7b78d590d1aba7623ac8c82cbca9de766fc216a3 /chrome/views/text_field.h
parentf42d28c678cd72979d64eebed9ea879c59e2576a (diff)
downloadchromium_src-802cbf0fc2d88085b7ef5c5fa01d32b261287d6f.zip
chromium_src-802cbf0fc2d88085b7ef5c5fa01d32b261287d6f.tar.gz
chromium_src-802cbf0fc2d88085b7ef5c5fa01d32b261287d6f.tar.bz2
Changes keyword editor to map all input in the keyword field to lower
case. BUG=4520 TEST=bring up the keyword editor, type some text and make sure it gets mapped to lower case. Review URL: http://codereview.chromium.org/12452 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6018 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/text_field.h')
-rw-r--r--chrome/views/text_field.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/views/text_field.h b/chrome/views/text_field.h
index 6d75e3b..4fa876c 100644
--- a/chrome/views/text_field.h
+++ b/chrome/views/text_field.h
@@ -39,7 +39,8 @@ class TextField : public View {
enum StyleFlags {
STYLE_DEFAULT = 0,
STYLE_PASSWORD = 1<<0,
- STYLE_MULTILINE = 1<<1
+ STYLE_MULTILINE = 1<<1,
+ STYLE_LOWERCASE = 1<<2
};
TextField::TextField()