Chromium Code Reviews| Index: content/browser/renderer_host/render_view_host_impl.h |
| diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h |
| index 256919bae563e167d13005f99b1c7ee46a10a600..eafaf89c6005f87fc78f07a2ee370fb480ce54d2 100644 |
| --- a/content/browser/renderer_host/render_view_host_impl.h |
| +++ b/content/browser/renderer_host/render_view_host_impl.h |
| @@ -45,11 +45,7 @@ class ListValue; |
| } |
| namespace content { |
| -class RenderViewHostObserver; |
| -struct FileChooserParams; |
| -struct ContextMenuParams; |
| -struct Referrer; |
| -struct ShowDesktopNotificationHostMsgParams; |
| +class TestRenderViewHost; |
| } |
| namespace ui { |
| @@ -60,6 +56,14 @@ namespace webkit_glue { |
| struct WebAccessibility; |
| } |
| +namespace content { |
| + |
| +class RenderViewHostObserver; |
| +struct FileChooserParams; |
| +struct ContextMenuParams; |
| +struct Referrer; |
| +struct ShowDesktopNotificationHostMsgParams; |
| + |
| // NotificationObserver used to listen for EXECUTE_JAVASCRIPT_RESULT |
| // notifications. |
| class ExecuteNotificationObserver : public content::NotificationObserver { |
|
jam
2012/03/05 23:59:28
bunch of "content::" that can be removed now
Jói
2012/03/06 16:38:55
Done.
|
| @@ -503,7 +507,7 @@ class CONTENT_EXPORT RenderViewHostImpl |
| #endif |
| private: |
| - friend class TestRenderViewHost; |
| + friend class content::TestRenderViewHost; |
|
jam
2012/03/05 23:59:28
nit: content:: not needed
Jói
2012/03/06 16:38:55
Done.
|
| // Sets whether this RenderViewHost is swapped out in favor of another, |
| // and clears any waiting state that is no longer relevant. |
| @@ -607,4 +611,6 @@ class CONTENT_EXPORT RenderViewHostImpl |
| #pragma warning(pop) |
| #endif |
| +} // namespace content |
| + |
| #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |