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

Unified Diff: chrome/browser/views/info_bubble.cc

Issue 14131: Fixes info bubble painting bug. This was happening because we were... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years 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
« no previous file with comments | « no previous file | chrome/views/widget_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/info_bubble.cc
===================================================================
--- chrome/browser/views/info_bubble.cc (revision 6991)
+++ chrome/browser/views/info_bubble.cc (working copy)
@@ -108,6 +108,9 @@
}
set_window_style(WS_POPUP | WS_CLIPCHILDREN);
set_window_ex_style(WS_EX_LAYERED | WS_EX_TOOLWINDOW);
+ // Because we're going to change the alpha value of the layered window we
+ // don't want to use the offscreen buffer provided by WidgetWin.
+ SetUseLayeredBuffer(false);
content_view_ = CreateContentView(content);
gfx::Rect bounds = content_view_->
CalculateWindowBounds(parent_hwnd, position_relative_to);
@@ -122,11 +125,6 @@
gfx::Rect parented_bounds = content_view_->
CalculateWindowBounds(parent_hwnd, position_relative_to);
- // Set our initial alpha to zero so we don't flicker at the user. This
- // doesn't trigger UpdateLayeredWindow, which would explode our native
- // controls.
- SetLayeredAlpha(kMinimumAlpha);
-
if (bounds != parented_bounds) {
SetWindowPos(NULL, parented_bounds.x(), parented_bounds.y(),
parented_bounds.width(), parented_bounds.height(),
@@ -142,6 +140,12 @@
false, false),
this);
+ // Set initial alpha value of the layered window.
+ SetLayeredWindowAttributes(GetHWND(),
+ RGB(0xFF, 0xFF, 0xFF),
+ kMinimumAlpha,
+ LWA_ALPHA);
+
fade_animation_.reset(new SlideAnimation(this));
fade_animation_->Show();
}
@@ -159,7 +163,8 @@
RGB(0xFF, 0xFF, 0xFF),
alpha,
LWA_ALPHA);
- content_view_->SchedulePaint();
+ // Don't need to invoke paint as SetLayeredWindowAttributes handles that for
+ // us.
}
bool InfoBubble::AcceleratorPressed(const views::Accelerator& accelerator) {
« no previous file with comments | « no previous file | chrome/views/widget_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698