| Index: chrome/browser/ui/browser_dialogs.h
|
| diff --git a/chrome/browser/ui/browser_dialogs.h b/chrome/browser/ui/browser_dialogs.h
|
| index 2c00c2b19c81d4bb56266d27467477a18bcfc0dd..a28ba5a74032ca61a383a896f14d8169c7dc2c79 100644
|
| --- a/chrome/browser/ui/browser_dialogs.h
|
| +++ b/chrome/browser/ui/browser_dialogs.h
|
| @@ -6,6 +6,7 @@
|
| #define CHROME_BROWSER_UI_BROWSER_DIALOGS_H_
|
|
|
| #include "ipc/ipc_message.h" // For IPC_MESSAGE_LOG_ENABLED.
|
| +#include "third_party/skia/include/core/SkColor.h"
|
| #include "ui/gfx/native_widget_types.h"
|
|
|
| class Browser;
|
| @@ -14,6 +15,7 @@ class TabModalConfirmDialogDelegate;
|
|
|
| namespace content {
|
| class BrowserContext;
|
| +class ColorChooser;
|
| class WebContents;
|
| }
|
|
|
| @@ -73,6 +75,10 @@ void ShowCreateWebAppShortcutsDialog(gfx::NativeWindow parent_window,
|
| content::WebContents* web_contents);
|
| #endif
|
|
|
| +// Shows a color chooser that reports to the given WebContents.
|
| +content::ColorChooser* ShowColorChooser(content::WebContents* web_contents,
|
| + SkColor initial_color);
|
| +
|
| } // namespace chrome
|
|
|
| #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_
|
|
|