| Index: content/browser/tab_contents/tab_contents.cc
|
| diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc
|
| index b6c4e8517fdebc88e063d710499232a8361047e9..e2f332d1bb8b21ea2ddc7d9de480768fb77fc6c3 100644
|
| --- a/content/browser/tab_contents/tab_contents.cc
|
| +++ b/content/browser/tab_contents/tab_contents.cc
|
| @@ -365,6 +365,21 @@ bool TabContents::OnMessageReceived(const IPC::Message& message) {
|
| return handled;
|
| }
|
|
|
| +void TabContents::OpenColorChooser(RenderViewHost* render_view_host,
|
| + const WebKit::WebColor& color) {
|
| + delegate_->OpenColorChooser(this, color);
|
| +}
|
| +
|
| +void TabContents::EndColorChooser(RenderViewHost* render_view_host) {
|
| + delegate_->EndColorChooser(this);
|
| +}
|
| +
|
| +void TabContents::SetSelectedColorInColorChooser(
|
| + RenderViewHost* render_view_host,
|
| + const WebKit::WebColor& color) {
|
| + delegate_->SetSelectedColorInColorChooser(this, color);
|
| +}
|
| +
|
| void TabContents::RunFileChooser(
|
| RenderViewHost* render_view_host,
|
| const content::FileChooserParams& params) {
|
|
|