summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-20 22:05:12 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-20 22:05:12 +0000
commite69bce3dd3e31039bc1072ae2aa63485d094ecd0 (patch)
tree7767051d7c655a481664596160aace7eb59fd419 /chrome/browser/views
parent77bc673bf31c32bfdcb1bf139c3a58eace23e3ea (diff)
downloadchromium_src-e69bce3dd3e31039bc1072ae2aa63485d094ecd0.zip
chromium_src-e69bce3dd3e31039bc1072ae2aa63485d094ecd0.tar.gz
chromium_src-e69bce3dd3e31039bc1072ae2aa63485d094ecd0.tar.bz2
Rename WebContentsView* to TabContentsView* in preparation for merging
TabContents and WebContents. This also removes the Destroy method from the print manager's header file. I removed the impl in a previous change but forgot the header. Review URL: http://codereview.chromium.org/90004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14063 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views')
-rw-r--r--chrome/browser/views/find_bar_view.h2
-rw-r--r--chrome/browser/views/find_bar_win.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/views/find_bar_view.h b/chrome/browser/views/find_bar_view.h
index 3ea4542..970c21b 100644
--- a/chrome/browser/views/find_bar_view.h
+++ b/chrome/browser/views/find_bar_view.h
@@ -98,7 +98,7 @@ class FindBarView : public views::View,
};
// Manages the OS-specific view for the find bar and acts as an intermediary
- // between us and the WebContentsView.
+ // between us and the TabContentsView.
FindBarWin* container_;
// The controls in the window.
diff --git a/chrome/browser/views/find_bar_win.cc b/chrome/browser/views/find_bar_win.cc
index 69d2417..af07227 100644
--- a/chrome/browser/views/find_bar_win.cc
+++ b/chrome/browser/views/find_bar_win.cc
@@ -502,7 +502,7 @@ void FindBarWin::SetFocusChangeListener(HWND parent_hwnd) {
void FindBarWin::RestoreSavedFocus() {
if (focus_tracker_.get() == NULL) {
- // TODO(brettw) Focus() should be on WebContentsView.
+ // TODO(brettw) Focus() should be on TabContentsView.
find_bar_controller_->web_contents()->Focus();
} else {
focus_tracker_->FocusLastFocusedExternalView();