| Index: chrome/browser/ui/webui/web_ui_test_handler.h
|
| diff --git a/chrome/browser/ui/webui/web_ui_test_handler.h b/chrome/browser/ui/webui/web_ui_test_handler.h
|
| index 9356c75761604ec4275efa5f632b64c5bf46bfb2..85e70406cb083205dc1ee1009441416fece600bc 100644
|
| --- a/chrome/browser/ui/webui/web_ui_test_handler.h
|
| +++ b/chrome/browser/ui/webui/web_ui_test_handler.h
|
| @@ -11,11 +11,13 @@
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/web_ui_message_handler.h"
|
|
|
| -class RenderViewHost;
|
| -
|
| namespace base {
|
| class ListValue;
|
| -} // namespace base
|
| +}
|
| +
|
| +namespace content {
|
| +class RenderViewHost;
|
| +}
|
|
|
| // This class registers test framework specific handlers on WebUI objects.
|
| class WebUITestHandler : public content::WebUIMessageHandler,
|
| @@ -26,7 +28,7 @@ class WebUITestHandler : public content::WebUIMessageHandler,
|
| // Sends a message through |preload_host| with the |js_text| to preload at the
|
| // appropriate time before the onload call is made.
|
| void PreloadJavaScript(const string16& js_text,
|
| - RenderViewHost* preload_host);
|
| + content::RenderViewHost* preload_host);
|
|
|
| // Runs |js_text| in this object's WebUI frame. Does not wait for any result.
|
| void RunJavaScript(const string16& js_text);
|
|
|