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

Unified Diff: frontend/client/src/autotest/afe/ITextBox.java

Issue 3554003: Merge remote branch 'cros/upstream' into tempbranch3 (Closed) Base URL: http://git.chromium.org/git/autotest.git
Patch Set: Created 10 years, 3 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 | « frontend/client/src/autotest/afe/ITextArea.java ('k') | frontend/client/src/autotest/afe/TestSelector.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frontend/client/src/autotest/afe/ITextBox.java
diff --git a/frontend/client/src/autotest/afe/ITextBox.java b/frontend/client/src/autotest/afe/ITextBox.java
new file mode 100644
index 0000000000000000000000000000000000000000..4790cfba57367ce5572ebef61cc7bff2ee6283ae
--- /dev/null
+++ b/frontend/client/src/autotest/afe/ITextBox.java
@@ -0,0 +1,12 @@
+package autotest.afe;
+
+import com.google.gwt.event.dom.client.HasBlurHandlers;
+import com.google.gwt.event.dom.client.HasKeyPressHandlers;
+import com.google.gwt.user.client.ui.HasText;
+import com.google.gwt.user.client.ui.TextBox;
+
+public interface ITextBox extends HasText, HasBlurHandlers, HasKeyPressHandlers {
+ public void setEnabled(boolean enabled);
+
+ public static class TextBoxImpl extends TextBox implements ITextBox {}
+}
« no previous file with comments | « frontend/client/src/autotest/afe/ITextArea.java ('k') | frontend/client/src/autotest/afe/TestSelector.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698