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

Side by Side Diff: ui/android/java/src/org/chromium/ui/OnColorSuggestionClickListener.java

Issue 23026006: Add support for color input datalist on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 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 // Copyright 2013 The Chromium Authors. All rights reserved.
newt (away) 2013/10/09 06:07:03 This interface could live inside ColorSuggestionLi
keishi 2013/10/15 16:44:02 Done.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
newt (away) 2013/10/09 06:07:03 newline after copyright
4 package org.chromium.ui;
5
6 /**
7 * The callback used to indicate the user has clicked on a suggestion.
8 */
9 public interface OnColorSuggestionClickListener {
10
11 /**
12 * Called upon a click on a suggestion.
13 *
14 * @param suggestion The suggestion that was clicked.
15 */
16 void onColorSuggestionClick(ColorSuggestion suggestion);
17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698