blob: d14737e6e578b55a629aa61feaea145c1d1c8bda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "webkit/plugins/ppapi/ppb_nacl_private_impl.h"
#include "base/rand_util_c.h"
#include "ppapi/c/private/ppb_nacl_private.h"
#include "webkit/glue/webkit_glue.h"
namespace webkit {
namespace ppapi {
namespace {
bool LaunchSelLdr(const char* alleged_url, int socket_count,
void* imc_handles, void* nacl_process_handle,
int* nacl_process_id) {
#if !defined(DISABLE_NACL)
return webkit_glue::LaunchSelLdr(alleged_url, socket_count, imc_handles,
nacl_process_handle, nacl_process_id);
#else
return false;
#endif
}
int UrandomFD(void) {
#if defined(OS_POSIX)
return GetUrandomFD();
#else
return 0;
#endif
}
} // namespace
const PPB_NaCl_Private ppb_nacl = {
&LaunchSelLdr,
&UrandomFD,
};
// static
const PPB_NaCl_Private* PPB_NaCl_Private_Impl::GetInterface() {
return &ppb_nacl;
}
} // namespace ppapi
} // namespace webkit
|