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

Unified Diff: views/widget/native_widget_gtk.cc

Issue 8620002: s/Move/Stack/ in names of stacking-related methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix a test Created 9 years, 1 month 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
« no previous file with comments | « views/widget/native_widget_gtk.h ('k') | views/widget/native_widget_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/widget/native_widget_gtk.cc
diff --git a/views/widget/native_widget_gtk.cc b/views/widget/native_widget_gtk.cc
index c7ef5e209fe819bf33d5dcb6fd60804ec6735dcc..d299f8c7de31e5289c0224652ff689fef2d461ce 100644
--- a/views/widget/native_widget_gtk.cc
+++ b/views/widget/native_widget_gtk.cc
@@ -1143,11 +1143,11 @@ void NativeWidgetGtk::SetSize(const gfx::Size& size) {
}
}
-void NativeWidgetGtk::MoveAbove(gfx::NativeView native_view) {
+void NativeWidgetGtk::StackAbove(gfx::NativeView native_view) {
ui::StackPopupWindow(GetNativeView(), native_view);
}
-void NativeWidgetGtk::MoveToTop() {
+void NativeWidgetGtk::StackAtTop() {
DCHECK(GTK_IS_WINDOW(GetNativeView()));
gtk_window_present(GTK_WINDOW(GetNativeView()));
}
« no previous file with comments | « views/widget/native_widget_gtk.h ('k') | views/widget/native_widget_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698