Add new text input types for android (step 1 of 3).

Step 2: https://bugs.webkit.org/show_bug.cgi?id=91654
Step 3: Add compile asserts in render_widget.cc for new enum values.

Review URL: https://chromiumcodereview.appspot.com/10809019

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147759 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/content/renderer/render_widget.cc b/content/renderer/render_widget.cc
index 905fbe2..568647c 100644
--- a/content/renderer/render_widget.cc
+++ b/content/renderer/render_widget.cc
@@ -1692,7 +1692,7 @@
   if (webwidget_) {
     int type = webwidget_->textInputType();
     // Check the type is in the range representable by ui::TextInputType.
-    DCHECK_LE(type, ui::TEXT_INPUT_TYPE_WEEK) <<
+    DCHECK_LE(type, ui::TEXT_INPUT_TYPE_MAX) <<
       "WebKit::WebTextInputType and ui::TextInputType not synchronized";
     return static_cast<ui::TextInputType>(type);
   }