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

Unified Diff: ui/android/java/src/org/chromium/ui/DropdownItem.java

Issue 231953003: Show Ash like <select> popup on Android tablets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@newpopupx
Patch Set: Introduce DropdownPopupWindow Created 6 years, 8 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
Index: ui/android/java/src/org/chromium/ui/DropdownItem.java
diff --git a/ui/android/java/src/org/chromium/ui/DropdownItem.java b/ui/android/java/src/org/chromium/ui/DropdownItem.java
new file mode 100644
index 0000000000000000000000000000000000000000..ee9a23e44d78cc89b67c494b0a119d6929db7625
--- /dev/null
+++ b/ui/android/java/src/org/chromium/ui/DropdownItem.java
@@ -0,0 +1,14 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.ui;
+
+/**
+ * Dropdown item interface used to access all the information needed to show the item.
+ */
+public interface DropdownItem {
+ public String getLabel();
+ public String getSublabel();
+ public boolean isEnabled();
+}

Powered by Google App Engine
This is Rietveld 408576698