blob: 5a3882ca48709fd2f883d342a38eb7da122289f6 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*******************************************************************************
* AUTOGENERATED - DO NOT EDIT
*******************************************************************************
* This file has been generated from the protobuf message
* protos/tracing_service/data_source_descriptor.proto
* by
* ../../tools/proto_to_cpp/proto_to_cpp.cc.
* If you need to make changes here, change the .proto file and then run
* ./tools/gen_tracing_cpp_headers_from_protos.py
*/
#include "include/perfetto/tracing/core/data_source_descriptor.h"
#include "protos/tracing_service/data_source_descriptor.pb.h"
namespace perfetto {
DataSourceDescriptor::DataSourceDescriptor() = default;
DataSourceDescriptor::~DataSourceDescriptor() = default;
DataSourceDescriptor::DataSourceDescriptor(DataSourceDescriptor&&) noexcept =
default;
DataSourceDescriptor& DataSourceDescriptor::operator=(DataSourceDescriptor&&) =
default;
void DataSourceDescriptor::FromProto(
const perfetto::protos::DataSourceDescriptor& proto) {
static_assert(sizeof(name_) == sizeof(proto.name()), "size mismatch");
name_ = static_cast<decltype(name_)>(proto.name());
unknown_fields_ = proto.unknown_fields();
}
void DataSourceDescriptor::ToProto(
perfetto::protos::DataSourceDescriptor* proto) const {
proto->Clear();
static_assert(sizeof(name_) == sizeof(proto->name()), "size mismatch");
proto->set_name(static_cast<decltype(proto->name())>(name_));
*(proto->mutable_unknown_fields()) = unknown_fields_;
}
} // namespace perfetto