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

Issue 563083003: V2 app support step3: Athena's NativeAppWindow (Closed)

Created:
6 years, 3 months ago by oshima
Modified:
6 years, 3 months ago
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, extensions-reviews_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

* Use componentized NativeAppWindowViews * Factor out code that can be used for both chrome/app_shell version from athena/extensions/chrome * Create AppsClient/AppsDelegate for app_shell version. * Removed CreateAppsClient as it's no longer necessary. AthenaNativeAppWindow needs more work in order to work properly on athena. I'll address them in separate bug/CLs. BUG=410448, 410448 TBR=ben@chromium.org Note: This CL depends on https://codereview.chromium.org/576863003/ Committed: https://crrev.com/03102bd6acd516669bd0c1fa45822a96475febd3 Cr-Commit-Position: refs/heads/master@{#295583}

Patch Set 1 : #

Total comments: 8

Patch Set 2 : addressed comments #

Patch Set 3 : #

Patch Set 4 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+230 lines, -1013 lines) Patch
M athena/athena.gyp View 4 chunks +16 lines, -4 lines 0 comments Download
M athena/extensions/DEPS View 1 chunk +5 lines, -0 lines 0 comments Download
A + athena/extensions/athena_app_delegate_base.h View 1 2 3 2 chunks +9 lines, -29 lines 0 comments Download
A + athena/extensions/athena_app_delegate_base.cc View 1 2 3 3 chunks +30 lines, -113 lines 0 comments Download
A + athena/extensions/athena_apps_client_base.h View 1 chunk +8 lines, -16 lines 0 comments Download
A + athena/extensions/athena_apps_client_base.cc View 1 2 3 2 chunks +7 lines, -58 lines 0 comments Download
A + athena/extensions/athena_native_app_window_views.h View 1 2 3 1 chunk +14 lines, -16 lines 0 comments Download
A + athena/extensions/athena_native_app_window_views.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
M athena/extensions/chrome/DEPS View 1 chunk +0 lines, -3 lines 0 comments Download
D athena/extensions/chrome/athena_app_delegate.h View 1 2 3 1 chunk +0 lines, -69 lines 0 comments Download
D athena/extensions/chrome/athena_app_delegate.cc View 1 2 3 1 chunk +0 lines, -193 lines 0 comments Download
D athena/extensions/chrome/athena_apps_client.h View 1 chunk +0 lines, -40 lines 0 comments Download
D athena/extensions/chrome/athena_apps_client.cc View 1 chunk +0 lines, -90 lines 0 comments Download
A + athena/extensions/chrome/athena_chrome_app_delegate.h View 1 2 3 2 chunks +8 lines, -33 lines 0 comments Download
A + athena/extensions/chrome/athena_chrome_app_delegate.cc View 1 2 3 6 chunks +10 lines, -110 lines 0 comments Download
A + athena/extensions/chrome/athena_chrome_apps_client.h View 2 chunks +8 lines, -13 lines 0 comments Download
A + athena/extensions/chrome/athena_chrome_apps_client.cc View 1 1 chunk +12 lines, -51 lines 0 comments Download
M athena/extensions/chrome/extensions_delegate_impl.cc View 3 chunks +3 lines, -3 lines 0 comments Download
A + athena/extensions/shell/athena_shell_app_delegate.h View 1 2 3 2 chunks +8 lines, -33 lines 0 comments Download
A + athena/extensions/shell/athena_shell_app_delegate.cc View 1 2 3 1 chunk +18 lines, -55 lines 0 comments Download
A + athena/extensions/shell/athena_shell_apps_client.h View 2 chunks +10 lines, -14 lines 0 comments Download
A athena/extensions/shell/athena_shell_apps_client.cc View 1 chunk +43 lines, -0 lines 0 comments Download
M athena/extensions/shell/extensions_delegate_impl.cc View 3 chunks +9 lines, -2 lines 0 comments Download
M athena/main/athena_main.cc View 2 chunks +0 lines, -48 lines 0 comments Download
M extensions/shell/browser/default_shell_browser_main_delegate.h View 1 chunk +0 lines, -1 line 0 comments Download
M extensions/shell/browser/default_shell_browser_main_delegate.cc View 2 chunks +0 lines, -5 lines 0 comments Download
M extensions/shell/browser/shell_browser_main_delegate.h View 2 chunks +0 lines, -4 lines 0 comments Download
M extensions/shell/browser/shell_browser_main_parts.cc View 1 chunk +0 lines, -3 lines 0 comments Download
M extensions/shell/browser/shell_desktop_controller.h View 2 chunks +3 lines, -1 line 0 comments Download
M extensions/shell/browser/shell_desktop_controller.cc View 1 2 3 4 chunks +5 lines, -2 lines 0 comments Download

Messages

Total messages: 28 (16 generated)
oshima
mukai -> athena jamescook -> extensions/shell
6 years, 3 months ago (2014-09-18 01:14:20 UTC) #12
Jun Mukai
athena lgtm with nits https://codereview.chromium.org/563083003/diff/170001/athena/extensions/athena_native_app_window_views.cc File athena/extensions/athena_native_app_window_views.cc (right): https://codereview.chromium.org/563083003/diff/170001/athena/extensions/athena_native_app_window_views.cc#newcode13 athena/extensions/athena_native_app_window_views.cc:13: } // namespace namespace athena ...
6 years, 3 months ago (2014-09-18 17:38:05 UTC) #13
oshima
https://codereview.chromium.org/563083003/diff/170001/athena/extensions/athena_native_app_window_views.cc File athena/extensions/athena_native_app_window_views.cc (right): https://codereview.chromium.org/563083003/diff/170001/athena/extensions/athena_native_app_window_views.cc#newcode13 athena/extensions/athena_native_app_window_views.cc:13: } // namespace On 2014/09/18 17:38:05, Jun Mukai wrote: ...
6 years, 3 months ago (2014-09-18 18:16:28 UTC) #14
James Cook
https://codereview.chromium.org/563083003/diff/170001/extensions/shell/browser/shell_desktop_controller.cc File extensions/shell/browser/shell_desktop_controller.cc (right): https://codereview.chromium.org/563083003/diff/170001/extensions/shell/browser/shell_desktop_controller.cc#newcode178 extensions/shell/browser/shell_desktop_controller.cc:178: extensions::AppsClient::Set(NULL); nit: I would either move this to the ...
6 years, 3 months ago (2014-09-18 19:08:26 UTC) #15
oshima
https://codereview.chromium.org/563083003/diff/170001/extensions/shell/browser/shell_desktop_controller.cc File extensions/shell/browser/shell_desktop_controller.cc (right): https://codereview.chromium.org/563083003/diff/170001/extensions/shell/browser/shell_desktop_controller.cc#newcode178 extensions/shell/browser/shell_desktop_controller.cc:178: extensions::AppsClient::Set(NULL); On 2014/09/18 19:08:26, James Cook wrote: > nit: ...
6 years, 3 months ago (2014-09-18 20:56:50 UTC) #16
James Cook
LGTM
6 years, 3 months ago (2014-09-18 21:27:41 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/563083003/230001
6 years, 3 months ago (2014-09-18 21:35:34 UTC) #20
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/11981)
6 years, 3 months ago (2014-09-18 21:53:28 UTC) #22
oshima
tbr'ing ben for following deps in athena/extensions/DEPS content/public/browser (simply moving from a/e/chrome/DEPS) ui/aura ui/gfx
6 years, 3 months ago (2014-09-18 22:24:16 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/563083003/230001
6 years, 3 months ago (2014-09-18 22:26:21 UTC) #26
commit-bot: I haz the power
Committed patchset #4 (id:230001) as 5e686c07ae771ea23cf71e0207253eee7fee15dd
6 years, 3 months ago (2014-09-18 22:34:25 UTC) #27
commit-bot: I haz the power
6 years, 3 months ago (2014-09-18 22:35:04 UTC) #28
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/03102bd6acd516669bd0c1fa45822a96475febd3
Cr-Commit-Position: refs/heads/master@{#295583}

Powered by Google App Engine
This is Rietveld 408576698