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

Unified Diff: ui/aura/window.h

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 | « ui/aura/desktop.cc ('k') | ui/aura/window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/window.h
diff --git a/ui/aura/window.h b/ui/aura/window.h
index 7feae058ae61b7da5af0fbab31330d88f57b14fd..9e1f05f972ad8a6ee824148c4bb2035356b04a6e 100644
--- a/ui/aura/window.h
+++ b/ui/aura/window.h
@@ -128,12 +128,12 @@ class AURA_EXPORT Window : public ui::LayerDelegate {
// the desktop's window.
void SetParent(Window* parent);
- // Move the specified child of this Window to the front of the z-order.
- void MoveChildToFront(Window* child);
+ // Stacks the specified child of this Window at the front of the z-order.
+ void StackChildAtTop(Window* child);
- // Moves |other| to be above |child|. Does nothing if |child| is already above
+ // Stacks |child| above |other|. Does nothing if |child| is already above
// |other|.
- void MoveChildAbove(Window* child, Window* other);
+ void StackChildAbove(Window* child, Window* other);
// Returns true if this window can be activated.
bool CanActivate() const;
« no previous file with comments | « ui/aura/desktop.cc ('k') | ui/aura/window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698