diff options
author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-25 23:49:16 +0000 |
---|---|---|
committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-25 23:49:16 +0000 |
commit | 57d83182d3280f27f57daa5c1778f1fdf1fbfaee (patch) | |
tree | c63a7aa4c6995b70b0a07dcf13f4b65937f81de8 /win8/metro_driver/chrome_app_view_ash.cc | |
parent | bf226999cde8c97a64ba6ac39641b46e10b4fc3e (diff) | |
download | chromium_src-57d83182d3280f27f57daa5c1778f1fdf1fbfaee.zip chromium_src-57d83182d3280f27f57daa5c1778f1fdf1fbfaee.tar.gz chromium_src-57d83182d3280f27f57daa5c1778f1fdf1fbfaee.tar.bz2 |
Revert 247151 "Cleanup of windows launch code"
> Cleanup of windows launch code
>
> The windows startup code was handling aura and non-aura cases which
> require different startup logic in metro (immersive mode). Since we
> don't support the non-Aura logic we can get rid of a lot of code.
>
> Tbring gab for the installer constant addition.
>
> R=ananta@chromium.org, scottmg@chromium.org
> TBR=gab
> BUG=none
>
> Review URL: https://codereview.chromium.org/142473002
TBR=cpu@chromium.org
Review URL: https://codereview.chromium.org/140123006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247156 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'win8/metro_driver/chrome_app_view_ash.cc')
-rw-r--r-- | win8/metro_driver/chrome_app_view_ash.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win8/metro_driver/chrome_app_view_ash.cc b/win8/metro_driver/chrome_app_view_ash.cc index 518d1d9..b8f2241 100644 --- a/win8/metro_driver/chrome_app_view_ash.cc +++ b/win8/metro_driver/chrome_app_view_ash.cc @@ -1328,7 +1328,9 @@ HRESULT ChromeAppViewAsh::OnSizeChanged(winui::Core::ICoreWindow* sender, /////////////////////////////////////////////////////////////////////////////// ChromeAppViewFactory::ChromeAppViewFactory( - winapp::Core::ICoreApplication* icore_app) { + winapp::Core::ICoreApplication* icore_app, + LPTHREAD_START_ROUTINE host_main, + void* host_context) { mswr::ComPtr<winapp::Core::ICoreApplication> core_app(icore_app); mswr::ComPtr<winapp::Core::ICoreApplicationExit> app_exit; CheckHR(core_app.As(&app_exit)); |