1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/metro_utils/metro_chrome_win.h"
10 #include "base/files/file_path.h"
11 #include "base/path_service.h"
12 #include "base/win/metro.h"
13 #include "base/win/scoped_com_initializer.h"
14 #include "base/win/scoped_comptr.h"
15 #include "base/win/windows_version.h"
16 #include "chrome/installer/util/browser_distribution.h"
17 #include "chrome/installer/util/install_util.h"
18 #include "chrome/installer/util/shell_util.h"
22 bool ActivateMetroChrome() {
23 // TODO(cpu): For Win7 we need to activate differently.
24 if (base::win::GetVersion() < base::win::VERSION_WIN8
)
27 base::FilePath chrome_exe
;
28 if (!PathService::Get(base::FILE_EXE
, &chrome_exe
)) {
29 NOTREACHED() << "Failed to get chrome exe path";
33 base::string16 app_id
= ShellUtil::GetBrowserModelId(
34 BrowserDistribution::GetDistribution(),
35 InstallUtil::IsPerUserInstall(chrome_exe
.value().c_str()));
37 NOTREACHED() << "Failed to get chrome app user model id.";
41 base::win::ScopedComPtr
<IApplicationActivationManager
> activation_manager
;
42 HRESULT hr
= activation_manager
.CreateInstance(
43 CLSID_ApplicationActivationManager
);
44 if (!activation_manager
) {
45 NOTREACHED() << "Failed to cocreate activation manager. Error: "
46 << std::showbase
<< std::hex
<< hr
;
50 unsigned long pid
= 0;
51 hr
= activation_manager
->ActivateApplication(app_id
.c_str(),
56 NOTREACHED() << "Failed to activate metro chrome. Error: "
57 << std::showbase
<< std::hex
<< hr
;
64 Win8Environment
GetWin8Environment(HostDesktopType desktop
) {
65 #if defined(USE_AURA) && defined(USE_ASH)
66 if (desktop
== chrome::HOST_DESKTOP_TYPE_ASH
)
67 return WIN_8_ENVIRONMENT_METRO_AURA
;
69 return WIN_8_ENVIRONMENT_DESKTOP_AURA
;
71 if (base::win::IsProcessImmersive(::GetCurrentProcess()))
72 return WIN_8_ENVIRONMENT_METRO
;
74 return WIN_8_ENVIRONMENT_DESKTOP
;