Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
|
tfarina
2013/05/20 16:45:53
Copyright 2013
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_COLOR_CHOOSER_UTIL_H_ | |
|
tfarina
2013/05/20 16:45:53
I'd name this file color_chooser_dialog.h
| |
| 6 #define CHROME_BROWSER_UI_COLOR_CHOOSER_UTIL_H_ | |
| 7 | |
| 8 #include "third_party/skia/include/core/SkColor.h" | |
| 9 | |
| 10 namespace content { | |
| 11 class WebContents; | |
| 12 class ColorChooser; | |
|
tfarina
2013/05/20 16:45:53
sort
| |
| 13 } | |
| 14 | |
| 15 content::ColorChooser* OpenColorChooser(content::WebContents* web_contents, | |
|
Ben Goodger (Google)
2013/05/20 16:14:30
1. put this in browser/ui/browser_dialogs.h instea
tfarina
2013/05/20 16:45:53
I'd also put this in chrome namespace. I don't rec
keishi
2013/05/21 16:48:06
Done. Thanks, this looks like the perfect place to
| |
| 16 SkColor initial_color); | |
| 17 | |
| 18 #endif // CHROME_BROWSER_UI_COLOR_CHOOSER_UTIL_H_ | |
| OLD | NEW |