C++程序  |  36行  |  1.29 KB

// Copyright 2014 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.

// IPC messages for push messaging.
// Multiply-included message file, hence no include guard.

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

#define IPC_MESSAGE_START PushMessagingMsgStart

IPC_ENUM_TRAITS_MAX_VALUE(content::PushMessagingStatus,
                          content::PUSH_MESSAGING_STATUS_LAST)

// Messages sent from the browser to the renderer.

IPC_MESSAGE_ROUTED3(PushMessagingMsg_RegisterSuccess,
                    int32 /* callbacks_id */,
                    GURL /* push_endpoint */,
                    std::string /* push_registration_id */)

IPC_MESSAGE_ROUTED2(PushMessagingMsg_RegisterError,
                    int32 /* callbacks_id */,
                    content::PushMessagingStatus /* status */)

// Messages sent from the renderer to the browser.

IPC_MESSAGE_CONTROL5(PushMessagingHostMsg_Register,
                     int32 /* render_frame_id */,
                     int32 /* callbacks_id */,
                     std::string /* sender_id */,
                     bool /* user_gesture */,
                     int32 /* service_worker_provider_id */)