diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-26 23:42:23 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-26 23:42:23 +0000 |
commit | 6479c267dd32aab3f043aa2d3b2f808505c031ef (patch) | |
tree | b4c1f5aa25fb119ed28338626e947a7f296a02e3 /chrome/browser/views/download_started_animation_win.cc | |
parent | b44f5db5391f9865d5950fe88f77dd80e7661ab2 (diff) | |
download | chromium_src-6479c267dd32aab3f043aa2d3b2f808505c031ef.zip chromium_src-6479c267dd32aab3f043aa2d3b2f808505c031ef.tar.gz chromium_src-6479c267dd32aab3f043aa2d3b2f808505c031ef.tar.bz2 |
Removes WidgetWin dependency from StatusBubbleViews so that it can compile on Linux.
Requires:
- making SetOpacity a cross platform method on Widget, replacing SetLayeredAlpha.
- moving Window::SetBounds to Widget
- replacing usage of MoveWindow in StatusBubbleViews with call to new SetBounds method.
BUG=none
TEST=make sure transparency still works for floating widgets like - status bubble, full screen exit bubble, dragged tabs
Review URL: http://codereview.chromium.org/113846
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16948 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/download_started_animation_win.cc')
-rw-r--r-- | chrome/browser/views/download_started_animation_win.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/views/download_started_animation_win.cc b/chrome/browser/views/download_started_animation_win.cc index 799d2ec..4de387e 100644 --- a/chrome/browser/views/download_started_animation_win.cc +++ b/chrome/browser/views/download_started_animation_win.cc @@ -105,7 +105,7 @@ DownloadStartedAnimationWin::DownloadStartedAnimationWin( popup_->set_window_style(WS_POPUP); popup_->set_window_ex_style(WS_EX_LAYERED | WS_EX_TOOLWINDOW | WS_EX_TRANSPARENT); - popup_->SetLayeredAlpha(0x00); + popup_->SetOpacity(0x00); popup_->Init(tab_contents_->GetNativeView(), rc, false); popup_->SetContentsView(this); Reposition(); @@ -157,8 +157,8 @@ void DownloadStartedAnimationWin::AnimateToState(double state) { double opacity = std::min(1.0 - pow(GetCurrentValue() - 0.5, 2) * 4.0, static_cast<double>(1.0)); - popup_->SetLayeredAlpha( - static_cast<BYTE>(opacity * 255.0)); + popup_->SetOpacity( + static_cast<SkColor>(opacity * 255.0)); SchedulePaint(); // Reposition() calls MoveWindow() which never picks up // alpha changes, so we need to force a paint. } |