This repository has been archived by the owner on Apr 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes two bugs in causing demo_launcher to crash
. MoveToFront/Back triggered a DCHECK. Made them early out if view already in position. . Called WindowManagerApp::InitFocus so that we don't crash when WM::SetFocus is called. BUG=none TEST=none [email protected] Review URL: https://codereview.chromium.org/615233003 Cr-Commit-Position: refs/heads/master@{#297559}
- Loading branch information
sky
authored and
Commit bot
committed
Oct 1, 2014
1 parent
eb15bc7
commit d102d04
Showing
5 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ shared_library("window_manager") { | |
"//ui/gl", | ||
"//ui/resources", | ||
"//ui/views", | ||
"//ui/wm", | ||
] | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ include_rules = [ | |
"+ui/events", | ||
"+ui/gfx", | ||
"+ui/views", | ||
"+ui/wm/core", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters