summaryrefslogtreecommitdiffstats
path: root/src/core/common/qt_messages.h
blob: de0257254f5a9a24006da2991045b7f537970245 (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
// Copyright (c) 2012 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.Chromium file.

// Multiply-included file, no traditional include guard.

#include "content/public/common/common_param_traits.h"
#include "ipc/ipc_message_macros.h"
#include "url/gurl.h"

#define IPC_MESSAGE_START QtMsgStart

//-----------------------------------------------------------------------------
// These are messages sent from the browser to the renderer process.

// Tells the renderer whether or not a storage access has been allowed.
IPC_MESSAGE_ROUTED2(QtWebEngineMsg_RequestStorageAccessAsyncResponse,
                    int  /* request_id */,
                    bool /* allowed */)

//-----------------------------------------------------------------------------
// These are messages sent from the renderer to the browser process.

IPC_SYNC_MESSAGE_CONTROL4_1(QtWebEngineHostMsg_AllowStorageAccess,
                            int /* render_frame_id */,
                            GURL /* origin_url */,
                            GURL /* top origin url */,
                            int /* storage_type */,
                            bool /* allowed */)

IPC_SYNC_MESSAGE_CONTROL4_1(QtWebEngineHostMsg_RequestStorageAccessSync,
                            int /* render_frame_id */,
                            GURL /* origin_url */,
                            GURL /* top origin url */,
                            int /* storage_type */,
                            bool /* allowed */)

// Sent by the renderer process to check whether access to storage is
// granted by content settings.
IPC_MESSAGE_CONTROL5(QtWebEngineHostMsg_RequestStorageAccessAsync,
                     int /* render_frame_id */,
                     int /* request_id */,
                     GURL /* origin_url */,
                     GURL /* top origin url */,
                     int /* storage_type */)