1868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)// Copyright 2013 The Chromium Authors. All rights reserved.
2868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)// Use of this source code is governed by a BSD-style license that can be
3868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)// found in the LICENSE file.
4a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)
5868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)package org.chromium.ui;
6868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
7868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)/**
8868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles) * The callback used to indicate the user changed the color.
9868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles) */
10868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)public interface OnColorChangedListener {
11868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
12868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)    /**
13868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)     * Called upon a color change.
14868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)     *
15868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)     * @param color The color that was set.
16868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)     */
17868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)    void onColorChanged(int color);
18868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)}