Index: ash/system/tray/system_tray.cc |
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc |
index ed64a7e2e9dc44f78a42a7656ffb13e71a722a74..1dd7be2fc8e87f4fdd4df4a69acf12cd626c554c 100644 |
--- a/ash/system/tray/system_tray.cc |
+++ b/ash/system/tray/system_tray.cc |
@@ -351,6 +351,12 @@ class SystemTrayBubble : public views::BubbleDelegateView { |
} |
} |
+ virtual gfx::Rect GetAnchorRect() OVERRIDE { |
+ gfx::Rect rect = tray_->GetWidget()->GetWindowScreenBounds(); |
+ rect.Inset(0, 0, kPaddingFromRightEdgeOfScreen, kPaddingFromBottomOfScreen); |
+ return rect; |
+ } |
+ |
// Overridden from views::View. |
virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE { |
state->role = ui::AccessibilityTypes::ROLE_WINDOW; |