Index: chrome/browser/ui/browser.cc |
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc |
index f1d1d7dcd4ee502a62019b6aeec6220704ccb12e..58d55aa8cede1eceb3cbf264a26fcbbf2f4b107c 100644 |
--- a/chrome/browser/ui/browser.cc |
+++ b/chrome/browser/ui/browser.cc |
@@ -1832,8 +1832,8 @@ void Browser::ConfirmAddSearchProvider(TemplateURL* template_url, |
/////////////////////////////////////////////////////////////////////////////// |
// Browser, ConstrainedWindowTabHelperDelegate implementation: |
-void Browser::SetTabContentBlocked(content::WebContents* web_contents, |
- bool blocked) { |
+void Browser::SetWebContentsBlocked(content::WebContents* web_contents, |
+ bool blocked) { |
int index = tab_strip_model_->GetIndexOfWebContents(web_contents); |
if (index == TabStripModel::kNoTab) { |
NOTREACHED(); |
@@ -1844,7 +1844,7 @@ void Browser::SetTabContentBlocked(content::WebContents* web_contents, |
web_contents->Focus(); |
} |
-bool Browser::GetConstrainedWindowTopCenter(gfx::Point* point) { |
+bool Browser::GetDialogTopCenter(gfx::Point* point) { |
int y = 0; |
if (window_->GetConstrainedWindowTopY(&y)) { |
*point = gfx::Point(window_->GetBounds().width() / 2, y); |