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

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..16368cbb83e403da8106dfec5c43fff6a13700fb 100644
--- a/ui/views/widget/native_widget_win.cc
+++ b/ui/views/widget/native_widget_win.cc
@@ -162,6 +162,14 @@ gfx::Vector2d NativeWidgetWin::CalculateOffsetToAncestorWithLayer(
return gfx::Vector2d();
}
+void NativeWidgetWin::ReorderLayers() {
+}
+
+bool NativeWidgetWin::HasNativeViewAttachedToViewTree() const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
void NativeWidgetWin::ViewRemoved(View* view) {
if (drop_target_.get())
drop_target_->ResetTargetViewIfEquals(view);

Powered by Google App Engine
This is Rietveld 408576698