seccomp-bpf: Remove legacy SandboxBPFPolicy class
[chromium-blink-merge.git] / chrome / browser / metro_utils / metro_chrome_win.cc
blobd4985a6d54c147474e2c600a4f4eef788efc3d34
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"
7 #include <windows.h>
8 #include <shobjidl.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"
20 namespace chrome {
22 bool ActivateMetroChrome() {
23 // TODO(cpu): For Win7 we need to activate differently.
24 if (base::win::GetVersion() < base::win::VERSION_WIN8)
25 return true;
27 base::FilePath chrome_exe;
28 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
29 NOTREACHED() << "Failed to get chrome exe path";
30 return false;
33 base::string16 app_id = ShellUtil::GetBrowserModelId(
34 BrowserDistribution::GetDistribution(),
35 InstallUtil::IsPerUserInstall(chrome_exe.value().c_str()));
36 if (app_id.empty()) {
37 NOTREACHED() << "Failed to get chrome app user model id.";
38 return false;
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;
47 return false;
50 unsigned long pid = 0;
51 hr = activation_manager->ActivateApplication(app_id.c_str(),
52 L"open",
53 AO_NONE,
54 &pid);
55 if (FAILED(hr)) {
56 NOTREACHED() << "Failed to activate metro chrome. Error: "
57 << std::showbase << std::hex << hr;
58 return false;
61 return true;
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;
68 else
69 return WIN_8_ENVIRONMENT_DESKTOP_AURA;
70 #else
71 if (base::win::IsProcessImmersive(::GetCurrentProcess()))
72 return WIN_8_ENVIRONMENT_METRO;
73 else
74 return WIN_8_ENVIRONMENT_DESKTOP;
75 #endif
79 } // namespace chrome