You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
658 B
26 lines
658 B
// Copyright 2017 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.
|
|
|
|
#ifndef MOJO_PUBLIC_CPP_BINDINGS_DISCONNECT_REASON_H_
|
|
#define MOJO_PUBLIC_CPP_BINDINGS_DISCONNECT_REASON_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string>
|
|
|
|
namespace mojo {
|
|
|
|
struct DisconnectReason {
|
|
public:
|
|
DisconnectReason(uint32_t in_custom_reason, const std::string& in_description)
|
|
: custom_reason(in_custom_reason), description(in_description) {}
|
|
|
|
uint32_t custom_reason;
|
|
std::string description;
|
|
};
|
|
|
|
} // namespace mojo
|
|
|
|
#endif // MOJO_PUBLIC_CPP_BINDINGS_DISCONNECT_REASON_H_
|