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

Unified Diff: content/test/js_injection_ready_observer.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 | « content/public/browser/web_ui_controller.h ('k') | content/test/test_navigation_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/js_injection_ready_observer.h
diff --git a/content/test/js_injection_ready_observer.h b/content/test/js_injection_ready_observer.h
index 8daf7d8baf87db26e672dad0e0ce4048f1d0184f..76370b5dcafabf5c51a3af9fc8cacf60aa01746e 100644
--- a/content/test/js_injection_ready_observer.h
+++ b/content/test/js_injection_ready_observer.h
@@ -6,7 +6,9 @@
#define CONTENT_TEST_JS_INJECTION_READY_OBSERVER_H_
#pragma once
+namespace content {
class RenderViewHost;
+}
// Interface to notify when JavaScript injection is possible.
class JsInjectionReadyObserver {
@@ -14,7 +16,8 @@ class JsInjectionReadyObserver {
// Called to indicate page entry committed and ready for JavaScript
// injection. |render_view_host| may be used to route injection messages to
// the appropriate RenderView.
- virtual void OnJsInjectionReady(RenderViewHost* render_view_host) = 0;
+ virtual void OnJsInjectionReady(
+ content::RenderViewHost* render_view_host) = 0;
protected:
virtual ~JsInjectionReadyObserver() {}
« no previous file with comments | « content/public/browser/web_ui_controller.h ('k') | content/test/test_navigation_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698