Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1300)

Unified Diff: chrome/browser/ui/webui/web_ui_browsertest.h

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to review comments. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/webui/uber/uber_ui.cc ('k') | chrome/browser/ui/webui/web_ui_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/web_ui_browsertest.h
diff --git a/chrome/browser/ui/webui/web_ui_browsertest.h b/chrome/browser/ui/webui/web_ui_browsertest.h
index aad452bbaab4510eb954f1051986f7db449aee4d..53b133107a52771437b3fa6daecec5ffea2063cb 100644
--- a/chrome/browser/ui/webui/web_ui_browsertest.h
+++ b/chrome/browser/ui/webui/web_ui_browsertest.h
@@ -15,13 +15,12 @@
#include "content/test/js_injection_ready_observer.h"
#include "content/test/test_navigation_observer.h"
-class RenderViewHost;
-
namespace base {
class Value;
}
namespace content {
+class RenderViewHost;
class WebUI;
class WebUIMessageHandler;
}
@@ -100,7 +99,7 @@ class WebUIBrowserTest
// javascript invocation.
void PreLoadJavascriptLibraries(const std::string& preload_test_fixture,
const std::string& preload_test_name,
- RenderViewHost* preload_host);
+ content::RenderViewHost* preload_host);
// Called by javascript-generated test bodies to browse to a page and preload
// the javascript for the given |preload_test_fixture| and
@@ -146,7 +145,8 @@ class WebUIBrowserTest
private:
// JsInjectionReadyObserver implementation.
- virtual void OnJsInjectionReady(RenderViewHost* render_view_host) OVERRIDE;
+ virtual void OnJsInjectionReady(
+ content::RenderViewHost* render_view_host) OVERRIDE;
// Builds a string containing all added javascript libraries.
void BuildJavascriptLibraries(string16* content);
@@ -168,7 +168,7 @@ class WebUIBrowserTest
const ConstValueVector& function_arguments,
bool is_test,
bool is_async,
- RenderViewHost* preload_host);
+ content::RenderViewHost* preload_host);
// Attaches mock and test handlers.
void SetupHandlers();
« no previous file with comments | « chrome/browser/ui/webui/uber/uber_ui.cc ('k') | chrome/browser/ui/webui/web_ui_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698