| Index: sandbox/linux/syscall_broker/broker_process.cc
|
| diff --git a/sandbox/linux/syscall_broker/broker_process.cc b/sandbox/linux/syscall_broker/broker_process.cc
|
| index 66b7660af071412d3047aa16f32905d6ea722fdd..7de083e6cdf5663a4d9e277778debd371a1f5dea 100644
|
| --- a/sandbox/linux/syscall_broker/broker_process.cc
|
| +++ b/sandbox/linux/syscall_broker/broker_process.cc
|
| @@ -28,17 +28,17 @@
|
|
|
| namespace sandbox {
|
|
|
| -BrokerProcess::BrokerProcess(int denied_errno,
|
| - const std::vector<std::string>& allowed_r_files,
|
| - const std::vector<std::string>& allowed_w_files,
|
| - bool fast_check_in_client,
|
| - bool quiet_failures_for_tests)
|
| +BrokerProcess::BrokerProcess(
|
| + int denied_errno,
|
| + const std::vector<syscall_broker::BrokerPermission>& permissions,
|
| + bool fast_check_in_client,
|
| + bool quiet_failures_for_tests)
|
| : initialized_(false),
|
| is_child_(false),
|
| fast_check_in_client_(fast_check_in_client),
|
| quiet_failures_for_tests_(quiet_failures_for_tests),
|
| broker_pid_(-1),
|
| - policy_(denied_errno, allowed_r_files, allowed_w_files),
|
| + policy_(denied_errno, permissions),
|
| ipc_socketpair_(-1) {
|
| }
|
|
|
|
|