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

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

Issue 15114002: Reorder the NativeViews attached to a view via kViewHostKey according to the position of the view (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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_win.cc
diff --git a/ui/views/widget/native_widget_win.cc b/ui/views/widget/native_widget_win.cc
index 53cc385d787dd0831778528ca659b10ac23e1e22..0a691210efac09fffe470b63bd174ecb8f830263 100644
--- a/ui/views/widget/native_widget_win.cc
+++ b/ui/views/widget/native_widget_win.cc
@@ -962,6 +962,11 @@ void NativeWidgetPrivate::ReparentNativeView(gfx::NativeView native_view,
}
// static
+void NativeWidgetPrivate::ReorderLayers(gfx::NativeView parent,
+ View* root_view) {
+}
+
+// static
bool NativeWidgetPrivate::IsMouseButtonDown() {
return (GetKeyState(VK_LBUTTON) & 0x80) ||
(GetKeyState(VK_RBUTTON) & 0x80) ||

Powered by Google App Engine
This is Rietveld 408576698