Ignore non-active fullscreen windows for shelf state.
[chromium-blink-merge.git] / content / browser / renderer_host / pepper / pepper_socket_utils.h
blob1a1a26cac19eed404e6e718f9f436f4b3a44c8a8
1 // Copyright (c) 2012 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_SOCKET_UTILS_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_SOCKET_UTILS_H_
8 #include "content/public/common/socket_permission_request.h"
9 #include "ppapi/c/pp_stdint.h"
11 struct PP_NetAddress_Private;
13 namespace net {
14 class X509Certificate;
17 namespace ppapi {
18 class PPB_X509Certificate_Fields;
21 namespace content {
23 class RenderViewHost;
25 namespace pepper_socket_utils {
27 SocketPermissionRequest CreateSocketPermissionRequest(
28 SocketPermissionRequest::OperationType type,
29 const PP_NetAddress_Private& net_addr);
31 // Returns true if the socket operation specified by |params| is allowed.
32 // If |params| is NULL, this method checks the basic "socket" permission, which
33 // is for those operations that don't require a specific socket permission rule.
34 bool CanUseSocketAPIs(bool external_plugin,
35 bool private_api,
36 const SocketPermissionRequest* params,
37 int render_process_id,
38 int render_view_id);
40 // TODO (ygorshenin@): remove this method.
41 bool CanUseSocketAPIs(bool external_plugin,
42 bool private_api,
43 const SocketPermissionRequest* params,
44 RenderViewHost* render_view_host);
46 // Extracts the certificate field data from a net::X509Certificate into
47 // PPB_X509Certificate_Fields.
48 bool GetCertificateFields(const net::X509Certificate& cert,
49 ppapi::PPB_X509Certificate_Fields* fields);
51 // Extracts the certificate field data from the DER representation of a
52 // certificate into PPB_X509Certificate_Fields.
53 bool GetCertificateFields(const char* der,
54 uint32_t length,
55 ppapi::PPB_X509Certificate_Fields* fields);
57 } // namespace pepper_socket_utils
59 } // namespace content
61 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_SOCKET_UTILS_H_