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

Unified Diff: content/browser/renderer_host/java/java_bridge_dispatcher_host_manager.cc

Issue 11343017: Move remaining files in content\browser\renderer_host to 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
Index: content/browser/renderer_host/java/java_bridge_dispatcher_host_manager.cc
===================================================================
--- content/browser/renderer_host/java/java_bridge_dispatcher_host_manager.cc (revision 164665)
+++ content/browser/renderer_host/java/java_bridge_dispatcher_host_manager.cc (working copy)
@@ -9,11 +9,11 @@
#include "content/browser/renderer_host/java/java_bridge_dispatcher_host.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h"
-using content::RenderViewHost;
+namespace content {
JavaBridgeDispatcherHostManager::JavaBridgeDispatcherHostManager(
- content::WebContents* web_contents)
- : content::WebContentsObserver(web_contents) {
+ WebContents* web_contents)
+ : WebContentsObserver(web_contents) {
}
JavaBridgeDispatcherHostManager::~JavaBridgeDispatcherHostManager() {
@@ -75,9 +75,11 @@
}
void JavaBridgeDispatcherHostManager::WebContentsDestroyed(
- content::WebContents* web_contents) {
+ WebContents* web_contents) {
// When a WebContents is shutting down, it clears its observers before
// it kills all of its RenderViewHosts, so we won't get a call to
// RenderViewDeleted() for all RenderViewHosts.
instances_.clear();
}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698