Index: content/browser/renderer_host/render_view_host.cc |
diff --git a/content/browser/renderer_host/render_view_host.cc b/content/browser/renderer_host/render_view_host.cc |
index e193dc2e71f586ccbb9a6cb3ec494e4606e7833a..9a60639bc41791d431763b915a2359f228046724 100644 |
--- a/content/browser/renderer_host/render_view_host.cc |
+++ b/content/browser/renderer_host/render_view_host.cc |
@@ -654,6 +654,17 @@ void RenderViewHost::SetInitialFocus(bool reverse) { |
Send(new ViewMsg_SetInitialFocus(routing_id(), reverse)); |
} |
+void RenderViewHost::DidChooseColorInColorChooser(int color_chooser_id, |
+ const SkColor& color) { |
+ Send(new ViewMsg_DidChooseColorResponse( |
+ routing_id(), color_chooser_id, color)); |
+} |
+ |
+void RenderViewHost::DidEndColorChooser(int color_chooser_id) { |
+ Send(new ViewMsg_DidEndColorChooser(routing_id(), color_chooser_id)); |
+ delegate_->DidEndColorChooser(); |
+} |
+ |
void RenderViewHost::FilesSelectedInChooser( |
const std::vector<FilePath>& files, |
int permissions) { |