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

Unified Diff: ui/views/widget/native_widget_aura.cc

Issue 12342028: make menus, bubbles, etc. top level windows on aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 9 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: ui/views/widget/native_widget_aura.cc
diff --git a/ui/views/widget/native_widget_aura.cc b/ui/views/widget/native_widget_aura.cc
index af94f37323d1ac96475015fe4ab9911231361318..ca0e22d8327b20f47f63af0fea0bccdbf844ae07 100644
--- a/ui/views/widget/native_widget_aura.cc
+++ b/ui/views/widget/native_widget_aura.cc
@@ -636,6 +636,9 @@ gfx::Size NativeWidgetAura::GetMaximumSize() const {
return delegate_->GetMaximumSize();
}
+void NativeWidgetAura::SetHostTransitionBounds(const gfx::Rect& bounds) {
+}
+
void NativeWidgetAura::OnBoundsChanged(const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds) {
if (old_bounds.origin() != new_bounds.origin())
@@ -717,6 +720,9 @@ void NativeWidgetAura::OnWindowDestroyed() {
delete this;
}
+void NativeWidgetAura::OnWindowHidingAnimationCompleted() {
+}
+
void NativeWidgetAura::OnWindowTargetVisibilityChanged(bool visible) {
delegate_->OnNativeWidgetVisibilityChanged(visible);
}

Powered by Google App Engine
This is Rietveld 408576698