1// Copyright 2013 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/browser_dialogs.h"
6
7// The actual android color chooser is at
8// components/web_contents_delegate_android/color_chooser_android.cc
9
10namespace chrome {
11
12content::ColorChooser* ShowColorChooser(content::WebContents* web_contents,
13                                        SkColor initial_color) {
14  return NULL;
15}
16
17}  // namespace chrome
18