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

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

Issue 2794001: Notification balloons don't want the WS_EX_LAYOUTRTL style flag, since the di... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: new naming, comment Created 10 years, 6 months 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
Index: chrome/browser/views/status_bubble_views.cc
===================================================================
--- chrome/browser/views/status_bubble_views.cc (revision 48671)
+++ chrome/browser/views/status_bubble_views.cc (working copy)
@@ -557,7 +557,8 @@
if (!popup_.get()) {
popup_.reset(Widget::CreatePopupWidget(Widget::Transparent,
Widget::NotAcceptEvents,
- Widget::NotDeleteOnDestroy));
+ Widget::NotDeleteOnDestroy,
+ Widget::MirrorOriginInRTL));
if (!view_)
view_ = new StatusView(this, popup_.get(), frame_->GetThemeProvider());
if (!expand_view_.get())

Powered by Google App Engine
This is Rietveld 408576698