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

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

Issue 3541002: Revert "Merge remote branch 'cros/upstream' into tempbranch2" (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/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/IButton.java ('k') | frontend/client/src/autotest/afe/IRadioButton.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frontend/client/src/autotest/afe/ICheckBox.java
diff --git a/frontend/client/src/autotest/afe/ICheckBox.java b/frontend/client/src/autotest/afe/ICheckBox.java
deleted file mode 100644
index 28583e83c51843446f18af8cb09145c2c131dc3f..0000000000000000000000000000000000000000
--- a/frontend/client/src/autotest/afe/ICheckBox.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package autotest.afe;
-
-import com.google.gwt.event.dom.client.HasClickHandlers;
-import com.google.gwt.user.client.ui.CheckBox;
-import com.google.gwt.user.client.ui.HasText;
-import com.google.gwt.user.client.ui.HasValue;
-
-public interface ICheckBox extends HasText, HasValue<Boolean>, HasClickHandlers {
- public void setEnabled(boolean enabled);
- public void setVisible(boolean visible);
- public boolean isVisible();
-
- public static class CheckBoxImpl extends CheckBox implements ICheckBox {
- public CheckBoxImpl() {}
-
- public CheckBoxImpl(String label) {
- super(label);
- }
- }
-}
« no previous file with comments | « frontend/client/src/autotest/afe/IButton.java ('k') | frontend/client/src/autotest/afe/IRadioButton.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698