Index: third_party/google_input_tools/src/chrome/os/inputview/elements/content/selectview.js |
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/elements/content/selectview.js b/third_party/google_input_tools/src/chrome/os/inputview/elements/content/selectview.js |
index 3b56a87c0e139fd32136c87a1a6e33a6dfef90bc..e88ddb5ceb77541b136e5dcc3f142eed7e241945 100644 |
--- a/third_party/google_input_tools/src/chrome/os/inputview/elements/content/selectview.js |
+++ b/third_party/google_input_tools/src/chrome/os/inputview/elements/content/selectview.js |
@@ -13,25 +13,21 @@ |
// |
goog.provide('i18n.input.chrome.inputview.elements.content.SelectView'); |
-goog.require('goog.array'); |
-goog.require('goog.dom'); |
goog.require('goog.dom.TagName'); |
goog.require('goog.dom.classlist'); |
-goog.require('goog.math.Coordinate'); |
goog.require('goog.style'); |
-goog.require('i18n.input.chrome.inputview.Accents'); |
+goog.require('i18n.input.chrome.ElementType'); |
goog.require('i18n.input.chrome.inputview.Css'); |
goog.require('i18n.input.chrome.inputview.elements.Element'); |
-goog.require('i18n.input.chrome.inputview.elements.ElementType'); |
-goog.require('i18n.input.chrome.inputview.util'); |
goog.scope(function() { |
var Css = i18n.input.chrome.inputview.Css; |
-var ElementType = i18n.input.chrome.inputview.elements.ElementType; |
+var ElementType = i18n.input.chrome.ElementType; |
var TagName = goog.dom.TagName; |
+ |
/** |
* The view for triggering select mode. |
* |
@@ -118,7 +114,7 @@ SelectView.prototype.resize = function(width, height) { |
goog.base(this, 'resize', width, height); |
var isLandscape = screen.width > screen.height; |
var affordanceWidth = isLandscape ? |
- SelectView.WIDTH_ : SelectView.PORTRAIT_WIDTH_; |
+ SelectView.WIDTH_ : SelectView.PORTRAIT_WIDTH_; |
if (isLandscape) { |
goog.dom.classlist.addRemove(this.getElement(), |
Css.PORTRAIT, Css.LANDSCAPE); |