diff options
author | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-09 00:38:19 +0000 |
---|---|---|
committer | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-09 00:38:19 +0000 |
commit | b519281d42b82e787e4ba0cb31f3d6cc91c954d3 (patch) | |
tree | fb077507c27d1b35b46e14ae99cd5edfe1195e20 /chrome/browser/simple_xp_frame.cc | |
parent | 3cde1db6f69ce6c03e752cc86bbadf9379259fb2 (diff) | |
download | chromium_src-b519281d42b82e787e4ba0cb31f3d6cc91c954d3.zip chromium_src-b519281d42b82e787e4ba0cb31f3d6cc91c954d3.tar.gz chromium_src-b519281d42b82e787e4ba0cb31f3d6cc91c954d3.tar.bz2 |
Even more tweaks.
- make window icon and title work on app windows
- make window title updating sync with the task bar
- make Aero Glass frame respect app mode settings
- move title formatting routine from TabRenderer into Browser (a more central location)
- appearance adjustments for app windows with info bars
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@612 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/simple_xp_frame.cc')
-rw-r--r-- | chrome/browser/simple_xp_frame.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/simple_xp_frame.cc b/chrome/browser/simple_xp_frame.cc index 54a9d38..f6120f8 100644 --- a/chrome/browser/simple_xp_frame.cc +++ b/chrome/browser/simple_xp_frame.cc @@ -253,7 +253,7 @@ bool SimpleXPFrameTitleBar::WillHandleMouseEvent(int x, int y) { void SimpleXPFrameTitleBar::SetWindowTitle(std::wstring s) { if (parent_->IsApplication()) { std::wstring t(s); - Tab::FormatTitleForDisplay(&t); + Browser::FormatTitleForDisplay(&t); label_->SetText(t); } else { label_->SetText(Browser::ComputePopupTitle( |