| Index: content/browser/webui/web_ui_impl.cc
|
| diff --git a/content/browser/webui/web_ui_impl.cc b/content/browser/webui/web_ui_impl.cc
|
| index 9beb557e6ac13461ff413f817d79c81855bd1598..4c83d0ed8fedf21e50569c714d88b01941b1cdfa 100644
|
| --- a/content/browser/webui/web_ui_impl.cc
|
| +++ b/content/browser/webui/web_ui_impl.cc
|
| @@ -20,6 +20,7 @@
|
| #include "content/public/common/bindings_policy.h"
|
| #include "ui/base/ui_base_switches.h"
|
|
|
| +using content::RenderViewHostImpl;
|
| using content::WebContents;
|
| using content::WebUIController;
|
| using content::WebUIMessageHandler;
|
| @@ -96,7 +97,7 @@ void WebUIImpl::OnWebUISend(const GURL& source_url,
|
| }
|
| }
|
|
|
| -void WebUIImpl::RenderViewCreated(RenderViewHost* render_view_host) {
|
| +void WebUIImpl::RenderViewCreated(content::RenderViewHost* render_view_host) {
|
| controller_->RenderViewCreated(render_view_host);
|
|
|
| // Do not attempt to set the toolkit property if WebUI is not enabled, e.g.,
|
|
|