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

Unified Diff: chrome/browser/ui/constrained_window_tab_helper.cc

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review, take 2 Created 8 years, 10 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: chrome/browser/ui/constrained_window_tab_helper.cc
diff --git a/chrome/browser/ui/constrained_window_tab_helper.cc b/chrome/browser/ui/constrained_window_tab_helper.cc
index 27b50a58f91069e9bb37e76fbdfc90d7dca9af30..ed113fac7887f162562c82fb8e8c3f06a9712817 100644
--- a/chrome/browser/ui/constrained_window_tab_helper.cc
+++ b/chrome/browser/ui/constrained_window_tab_helper.cc
@@ -78,7 +78,7 @@ void ConstrainedWindowTabHelper::BlockTabContent(bool blocked) {
}
// RenderViewHost may be NULL during shutdown.
- RenderViewHost* host = contents->GetRenderViewHost();
+ content::RenderViewHost* host = contents->GetRenderViewHost();
if (host) {
host->SetIgnoreInputEvents(blocked);
host->Send(new ChromeViewMsg_SetVisuallyDeemphasized(

Powered by Google App Engine
This is Rietveld 408576698