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

Side by Side Diff: frontend/client/src/autotest/afe/IButton.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.HasClickHandlers;
4 import com.google.gwt.user.client.ui.Button;
5 import com.google.gwt.user.client.ui.HasText;
6
7 public interface IButton extends HasText, HasClickHandlers {
8 public void setEnabled(boolean enabled);
9
10 public static class ButtonImpl extends Button implements IButton {
11 public ButtonImpl() {}
12
13 public ButtonImpl(String html) {
14 super(html);
15 }
16 }
17 }
OLDNEW
« no previous file with comments | « frontend/client/src/autotest/afe/HostSelector.java ('k') | frontend/client/src/autotest/afe/ICheckBox.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698