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

Side by Side 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, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 package autotest.afe;
2
3 import com.google.gwt.event.dom.client.HasBlurHandlers;
4 import com.google.gwt.event.dom.client.HasKeyPressHandlers;
5 import com.google.gwt.user.client.ui.HasText;
6 import com.google.gwt.user.client.ui.TextBox;
7
8 public interface ITextBox extends HasText, HasBlurHandlers, HasKeyPressHandlers {
9 public void setEnabled(boolean enabled);
10
11 public static class TextBoxImpl extends TextBox implements ITextBox {}
12 }
OLDNEW
« 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