summaryrefslogtreecommitdiffstats
path: root/chrome/browser/memory_details.cc
diff options
context:
space:
mode:
authorjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-18 21:59:57 +0000
committerjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-18 21:59:57 +0000
commitb0b67cfeb903dc6a59e30bd6907808142c05fdcc (patch)
tree0b0c071b09c39da2485ce45cb11a858c512bd5a6 /chrome/browser/memory_details.cc
parenta3c5d9671f42849a59581517cca8b1dbad43d461 (diff)
downloadchromium_src-b0b67cfeb903dc6a59e30bd6907808142c05fdcc.zip
chromium_src-b0b67cfeb903dc6a59e30bd6907808142c05fdcc.tar.gz
chromium_src-b0b67cfeb903dc6a59e30bd6907808142c05fdcc.tar.bz2
Move RenderViewHostDelegate to content/public and content namespace.
TBR=jam@chromium.org BUG=98716 Review URL: http://codereview.chromium.org/9252010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118162 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/memory_details.cc')
-rw-r--r--chrome/browser/memory_details.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/memory_details.cc b/chrome/browser/memory_details.cc
index 0a838bc..df2d39c 100644
--- a/chrome/browser/memory_details.cc
+++ b/chrome/browser/memory_details.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -19,10 +19,10 @@
#include "content/browser/browser_child_process_host.h"
#include "content/browser/renderer_host/backing_store_manager.h"
#include "content/browser/renderer_host/render_view_host.h"
-#include "content/browser/renderer_host/render_view_host_delegate.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/render_process_host.h"
+#include "content/public/browser/render_view_host_delegate.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/bindings_policy.h"
#include "content/public/common/process_type.h"
@@ -204,7 +204,7 @@ void MemoryDetails::CollectChildInfoOnUIThread() {
continue;
const RenderViewHost* host = static_cast<const RenderViewHost*>(widget);
- RenderViewHostDelegate* host_delegate = host->delegate();
+ content::RenderViewHostDelegate* host_delegate = host->delegate();
DCHECK(host_delegate);
GURL url = host_delegate->GetURL();
content::ViewType type = host_delegate->GetRenderViewType();