summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/extensions/chrome_v8_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/renderer/extensions/chrome_v8_context.h')
-rw-r--r--chrome/renderer/extensions/chrome_v8_context.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/chrome/renderer/extensions/chrome_v8_context.h b/chrome/renderer/extensions/chrome_v8_context.h
index f55fc54..750a3b3 100644
--- a/chrome/renderer/extensions/chrome_v8_context.h
+++ b/chrome/renderer/extensions/chrome_v8_context.h
@@ -11,15 +11,17 @@
#include "base/basictypes.h"
#include "v8/include/v8.h"
-namespace base {
-class ListValue;
-}
-
namespace WebKit {
class WebFrame;
}
+namespace base {
+class ListValue;
+}
+
+namespace content {
class RenderView;
+}
// Chrome's wrapper for a v8 context.
class ChromeV8Context {
@@ -46,7 +48,7 @@ class ChromeV8Context {
// Returns the RenderView associated with this context. Can return NULL if the
// context is in the process of being destroyed.
- RenderView* GetRenderView() const;
+ content::RenderView* GetRenderView() const;
// Fires the onload and onunload events on the chromeHidden object.
// TODO(aa): Does these make more sense with EventBindings?