Index: content/browser/renderer_host/render_widget_host_impl.cc |
diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc |
index e4ec5867a1e9be45d9b7166f58cc0767cff4c01b..3f8039231c605bc7c6a41323e5620f5fa98a632e 100644 |
--- a/content/browser/renderer_host/render_widget_host_impl.cc |
+++ b/content/browser/renderer_host/render_widget_host_impl.cc |
@@ -2044,6 +2044,10 @@ void RenderWidgetHostImpl::SetBackgroundOpaque(bool opaque) { |
Send(new ViewMsg_SetBackgroundOpaque(GetRoutingID(), opaque)); |
} |
+void RenderWidgetHostImpl::SetBackgroundColor(SkColor color) { |
+ Send(new ViewMsg_SetBackgroundColor(GetRoutingID(), color)); |
+} |
+ |
void RenderWidgetHostImpl::SetEditCommandsForNextKeyEvent( |
const std::vector<EditCommand>& commands) { |
Send(new InputMsg_SetEditCommandsForNextKeyEvent(GetRoutingID(), commands)); |