|
Separate athena's startup process from AppShell's
* Introduced DesktopController interface. app_shell's Init process stays in ShellDesktopController
* Removed ShellAppWindowController
* Athena has its own AthenaDesktopController
* Intorduced AthenaEnv. This is now used for both AthenaMain and Unit test.
* Removed ScreenManagerDelegate and integrate it into AthenaEnv.
* Moved FocusController to ScreenManager, and removed CreateFocusRules()
BUG= 397167
TBR=sky@chromium.org
Committed: https://crrev.com/1629c184e328e7263e93042de97af58651ebe510
Cr-Commit-Position: refs/heads/master@{#291763}
Total comments: 9
Total comments: 14
Total comments: 2
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+501 lines, -403 lines) |
Patch |
 |
M |
athena/athena.gyp
|
View
|
|
3 chunks |
+2 lines, -3 lines |
0 comments
|
Download
|
 |
A + |
athena/env/DEPS
|
View
|
|
1 chunk |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
A |
athena/env/athena_env_impl.cc
|
View
|
1
2
3
4
5
6
|
1 chunk |
+260 lines, -0 lines |
0 comments
|
Download
|
 |
A + |
athena/env/public/DEPS
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
A |
athena/env/public/athena_env.h
|
View
|
|
1 chunk |
+39 lines, -0 lines |
0 comments
|
Download
|
 |
M |
athena/home/DEPS
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
athena/home/home_card_impl.cc
|
View
|
1
2
3
|
2 chunks |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
athena/main/DEPS
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
athena/main/athena_launcher.h
|
View
|
|
1 chunk |
+1 line, -4 lines |
0 comments
|
Download
|
 |
M |
athena/main/athena_launcher.cc
|
View
|
|
5 chunks |
+8 lines, -4 lines |
0 comments
|
Download
|
 |
M |
athena/main/athena_main.cc
|
View
|
1
2
3
|
4 chunks |
+26 lines, -44 lines |
0 comments
|
Download
|
 |
M |
athena/main/athena_main.gyp
|
View
|
|
1 chunk |
+0 lines, -2 lines |
0 comments
|
Download
|
 |
M |
athena/screen/public/screen_manager.h
|
View
|
|
2 chunks |
+1 line, -9 lines |
0 comments
|
Download
|
 |
D |
athena/screen/public/screen_manager_delegate.h
|
View
|
|
1 chunk |
+0 lines, -27 lines |
0 comments
|
Download
|
 |
M |
athena/screen/screen_manager_impl.cc
|
View
|
|
9 chunks |
+20 lines, -20 lines |
0 comments
|
Download
|
 |
M |
athena/test/DEPS
|
View
|
1
2
|
1 chunk |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
athena/test/athena_test_base.h
|
View
|
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
athena/test/athena_test_helper.h
|
View
|
|
3 chunks |
+2 lines, -8 lines |
0 comments
|
Download
|
 |
M |
athena/test/athena_test_helper.cc
|
View
|
|
4 chunks |
+11 lines, -52 lines |
0 comments
|
Download
|
 |
D |
athena/test/test_screen_manager_delegate.h
|
View
|
|
1 chunk |
+0 lines, -36 lines |
0 comments
|
Download
|
 |
D |
athena/test/test_screen_manager_delegate.cc
|
View
|
|
1 chunk |
+0 lines, -24 lines |
0 comments
|
Download
|
 |
M |
extensions/shell/app_shell.gyp
|
View
|
1
2
3
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
extensions/shell/browser/api/shell/shell_api.cc
|
View
|
1
2
3
4
5
|
2 chunks |
+3 lines, -4 lines |
0 comments
|
Download
|
 |
D |
extensions/shell/browser/default_shell_app_window_controller.h
|
View
|
1
2
3
4
5
|
1 chunk |
+0 lines, -40 lines |
0 comments
|
Download
|
 |
D |
extensions/shell/browser/default_shell_app_window_controller.cc
|
View
|
1
2
3
4
5
|
1 chunk |
+0 lines, -46 lines |
0 comments
|
Download
|
 |
M |
extensions/shell/browser/default_shell_browser_main_delegate.h
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
extensions/shell/browser/default_shell_browser_main_delegate.cc
|
View
|
|
2 chunks |
+2 lines, -6 lines |
0 comments
|
Download
|
 |
A |
extensions/shell/browser/desktop_controller.h
|
View
|
1
2
3
4
5
6
|
1 chunk |
+49 lines, -0 lines |
0 comments
|
Download
|
 |
A |
extensions/shell/browser/desktop_controller.cc
|
View
|
1
2
3
|
1 chunk |
+32 lines, -0 lines |
0 comments
|
Download
|
 |
M |
extensions/shell/browser/shell_browser_main_delegate.h
|
View
|
|
2 chunks |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
extensions/shell/browser/shell_browser_main_parts.h
|
View
|
|
2 chunks |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
extensions/shell/browser/shell_desktop_controller.h
|
View
|
1
2
3
4
5
|
7 chunks |
+9 lines, -29 lines |
0 comments
|
Download
|
 |
M |
extensions/shell/browser/shell_desktop_controller.cc
|
View
|
1
2
3
4
5
|
6 chunks |
+17 lines, -30 lines |
0 comments
|
Download
|
Total messages: 17 (0 generated)
|