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

Unified Diff: content/browser/renderer_host/render_widget_helper.cc

Issue 10804031: Move more files into the content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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
Index: content/browser/renderer_host/render_widget_helper.cc
===================================================================
--- content/browser/renderer_host/render_widget_helper.cc (revision 147462)
+++ content/browser/renderer_host/render_widget_helper.cc (working copy)
@@ -17,11 +17,7 @@
#include "content/browser/dom_storage/session_storage_namespace_impl.h"
#include "content/common/view_messages.h"
-using content::BrowserThread;
-using content::RenderViewHostImpl;
-using content::ResourceDispatcherHostImpl;
-using content::SessionStorageNamespace;
-
+namespace content {
namespace {
typedef std::map<int, RenderWidgetHelper*> WidgetHelperMap;
@@ -236,8 +232,7 @@
OnDiscardBackingStoreMsg(proxy);
// It is reasonable for the host to no longer exist.
- content::RenderProcessHost* host =
- content::RenderProcessHost::FromID(render_process_id_);
+ RenderProcessHost* host = RenderProcessHost::FromID(render_process_id_);
if (host)
host->OnMessageReceived(proxy->message());
}
@@ -407,3 +402,5 @@
allocated_dibs_.clear();
}
#endif
+
+} // namespace content
« no previous file with comments | « content/browser/renderer_host/render_widget_helper.h ('k') | content/browser/renderer_host/render_widget_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698