// Copyright (c) 2021 The Chromium Embedded Framework Authors. All rights // reserved. Use of this source code is governed by a BSD-style license that // can be found in the LICENSE file. // // --------------------------------------------------------------------------- // // This file was generated by the CEF translator tool. If making changes by // hand only do so within the body of existing method and function // implementations. See the translator.README.txt file in the tools directory // for more information. // // $hash=ea934494226ae5a1bb4cbeb26d212b7efabf3e50$ // #include "libcef_dll/cpptoc/media_source_cpptoc.h" #include "libcef_dll/shutdown_checker.h" namespace { // MEMBER FUNCTIONS - Body may be edited by hand. cef_string_userfree_t CEF_CALLBACK media_source_get_id(struct _cef_media_source_t* self) { shutdown_checker::AssertNotShutdown(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING DCHECK(self); if (!self) return NULL; // Execute CefString _retval = CefMediaSourceCppToC::Get(self)->GetId(); // Return type: string return _retval.DetachToUserFree(); } int CEF_CALLBACK media_source_is_cast_source(struct _cef_media_source_t* self) { shutdown_checker::AssertNotShutdown(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING DCHECK(self); if (!self) return 0; // Execute bool _retval = CefMediaSourceCppToC::Get(self)->IsCastSource(); // Return type: bool return _retval; } int CEF_CALLBACK media_source_is_dial_source(struct _cef_media_source_t* self) { shutdown_checker::AssertNotShutdown(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING DCHECK(self); if (!self) return 0; // Execute bool _retval = CefMediaSourceCppToC::Get(self)->IsDialSource(); // Return type: bool return _retval; } } // namespace // CONSTRUCTOR - Do not edit by hand. CefMediaSourceCppToC::CefMediaSourceCppToC() { GetStruct()->get_id = media_source_get_id; GetStruct()->is_cast_source = media_source_is_cast_source; GetStruct()->is_dial_source = media_source_is_dial_source; } // DESTRUCTOR - Do not edit by hand. CefMediaSourceCppToC::~CefMediaSourceCppToC() { shutdown_checker::AssertNotShutdown(); } template <> CefRefPtr CefCppToCRefCounted:: UnwrapDerived(CefWrapperType type, cef_media_source_t* s) { NOTREACHED() << "Unexpected class type: " << type; return nullptr; } template <> CefWrapperType CefCppToCRefCounted::kWrapperType = WT_MEDIA_SOURCE;