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

Unified Diff: content/renderer/web_intents_host.h

Issue 11232014: Move a bunch of code in content\renderer to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 2 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/renderer/text_input_client_observer.cc ('k') | content/renderer/web_intents_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/web_intents_host.h
===================================================================
--- content/renderer/web_intents_host.h (revision 163045)
+++ content/renderer/web_intents_host.h (working copy)
@@ -16,8 +16,6 @@
#include "webkit/glue/web_intent_data.h"
#include "webkit/glue/web_intent_reply_data.h"
-class RenderViewImpl;
-
namespace WebKit {
class WebDeliveredIntentClient;
class WebIntentRequest;
@@ -28,10 +26,13 @@
struct WebIntentData;
}
+namespace content {
+class RenderViewImpl;
+
// WebIntentsHost is a delegate for Web Intents messages. It is the
// renderer-side handler for IPC messages delivering the intent payload data
// and preparing it for access by the service page.
-class WebIntentsHost : public content::RenderViewObserver {
+class WebIntentsHost : public RenderViewObserver {
public:
// |render_view| must not be NULL.
explicit WebIntentsHost(RenderViewImpl* render_view);
@@ -97,4 +98,6 @@
DISALLOW_COPY_AND_ASSIGN(WebIntentsHost);
};
+} // namespace content
+
#endif // CONTENT_RENDERER_WEB_INTENTS_HOST_H_
« no previous file with comments | « content/renderer/text_input_client_observer.cc ('k') | content/renderer/web_intents_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698