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

Side by Side Diff: chrome/browser/ui/color_chooser.cc

Issue 7685006: Implement input type=color UI (common part) (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: forgot to turn off flag Created 9 years, 1 month 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 (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/color_chooser.h"
6
7 #if defined(ENABLE_INPUT_COLOR)
8
9 ColorChooser::~ColorChooser() {}
10
11 void ColorChooser::open(Listener* listener, WebKit::WebColor initial_color) {
12 openImpl(listener, initial_color);
13 }
14
15 void ColorChooser::cleanup(Listener* listener) {
16 cleanupImpl(listener);
17 }
18
19 void ColorChooser::setSelectedColor(WebKit::WebColor color) {
20 setSelectedColorImpl(color);
21 }
22
23 #endif // defined(ENABLE_INPUT_COLOR)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698