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

Side by Side Diff: content/common/sandbox_linux/bpf_gpu_policy_linux.cc

Issue 374553002: VAVEA: Turn VAAPI encoder flag into a kill switch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/sandbox_linux/bpf_gpu_policy_linux.h" 5 #include "content/common/sandbox_linux/bpf_gpu_policy_linux.h"
6 6
7 #include <dlfcn.h> 7 #include <dlfcn.h>
8 #include <errno.h> 8 #include <errno.h>
9 #include <fcntl.h> 9 #include <fcntl.h>
10 #include <sys/socket.h> 10 #include <sys/socket.h>
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 #else 70 #else
71 return false; 71 return false;
72 #endif 72 #endif
73 } 73 }
74 74
75 bool IsAcceleratedVideoEnabled() { 75 bool IsAcceleratedVideoEnabled() {
76 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); 76 const CommandLine& command_line = *CommandLine::ForCurrentProcess();
77 bool accelerated_encode_enabled = false; 77 bool accelerated_encode_enabled = false;
78 #if defined(OS_CHROMEOS) 78 #if defined(OS_CHROMEOS)
79 accelerated_encode_enabled = 79 accelerated_encode_enabled =
80 command_line.HasSwitch(switches::kEnableVaapiAcceleratedVideoEncode); 80 !command_line.HasSwitch(switches::kDisableVaapiAcceleratedVideoEncode);
81 #endif 81 #endif
82 return !command_line.HasSwitch(switches::kDisableAcceleratedVideoDecode) || 82 return !command_line.HasSwitch(switches::kDisableAcceleratedVideoDecode) ||
83 accelerated_encode_enabled; 83 accelerated_encode_enabled;
84 } 84 }
85 85
86 intptr_t GpuSIGSYS_Handler(const struct arch_seccomp_data& args, 86 intptr_t GpuSIGSYS_Handler(const struct arch_seccomp_data& args,
87 void* aux_broker_process) { 87 void* aux_broker_process) {
88 RAW_CHECK(aux_broker_process); 88 RAW_CHECK(aux_broker_process);
89 BrokerProcess* broker_process = 89 BrokerProcess* broker_process =
90 static_cast<BrokerProcess*>(aux_broker_process); 90 static_cast<BrokerProcess*>(aux_broker_process);
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 broker_process_ = new BrokerProcess(GetFSDeniedErrno(), 268 broker_process_ = new BrokerProcess(GetFSDeniedErrno(),
269 read_whitelist, 269 read_whitelist,
270 write_whitelist); 270 write_whitelist);
271 // The initialization callback will perform generic initialization and then 271 // The initialization callback will perform generic initialization and then
272 // call broker_sandboxer_callback. 272 // call broker_sandboxer_callback.
273 CHECK(broker_process_->Init(base::Bind(&UpdateProcessTypeAndEnableSandbox, 273 CHECK(broker_process_->Init(base::Bind(&UpdateProcessTypeAndEnableSandbox,
274 broker_sandboxer_allocator))); 274 broker_sandboxer_allocator)));
275 } 275 }
276 276
277 } // namespace content 277 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698