mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2012 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.
 | |
| 
 | |
| #include "libcef/common/process_message_impl.h"
 | |
| #include "libcef/common/cef_messages.h"
 | |
| #include "libcef/common/values_impl.h"
 | |
| 
 | |
| #include "base/logging.h"
 | |
| 
 | |
| namespace {
 | |
| 
 | |
| void CopyValue(const Cef_Request_Params& source,
 | |
|                Cef_Request_Params& target) {
 | |
|   target.name = source.name;
 | |
|   auto copy = source.arguments.CreateDeepCopy();
 | |
|   target.arguments.Swap(copy.get());
 | |
| }
 | |
| 
 | |
| }  // namespace
 | |
| 
 | |
| // static
 | |
| CefRefPtr<CefProcessMessage> CefProcessMessage::Create(const CefString& name) {
 | |
|   Cef_Request_Params* params = new Cef_Request_Params();
 | |
|   params->name = name;
 | |
|   return new CefProcessMessageImpl(params, true, false);
 | |
| }
 | |
| 
 | |
| CefProcessMessageImpl::CefProcessMessageImpl(Cef_Request_Params* value,
 | |
|                                              bool will_delete,
 | |
|                                              bool read_only)
 | |
|   : CefValueBase<CefProcessMessage, Cef_Request_Params>(
 | |
|         value, NULL, will_delete ? kOwnerWillDelete : kOwnerNoDelete,
 | |
|         read_only, NULL) {
 | |
| }
 | |
| 
 | |
| bool CefProcessMessageImpl::CopyTo(Cef_Request_Params& target) {
 | |
|   CEF_VALUE_VERIFY_RETURN(false, false);
 | |
|   CopyValue(const_value(), target);
 | |
|   return true;
 | |
| }
 | |
| 
 | |
| bool CefProcessMessageImpl::IsValid() {
 | |
|   return !detached();
 | |
| }
 | |
| 
 | |
| bool CefProcessMessageImpl::IsReadOnly() {
 | |
|   return read_only();
 | |
| }
 | |
| 
 | |
| CefRefPtr<CefProcessMessage> CefProcessMessageImpl::Copy() {
 | |
|   CEF_VALUE_VERIFY_RETURN(false, NULL);
 | |
|   Cef_Request_Params* params = new Cef_Request_Params();
 | |
|   CopyValue(const_value(), *params);
 | |
|   return new CefProcessMessageImpl(params, true, false);
 | |
| }
 | |
| 
 | |
| CefString CefProcessMessageImpl::GetName() {
 | |
|   CEF_VALUE_VERIFY_RETURN(false, CefString());
 | |
|   return const_value().name;
 | |
| }
 | |
| 
 | |
| CefRefPtr<CefListValue> CefProcessMessageImpl::GetArgumentList() {
 | |
|   CEF_VALUE_VERIFY_RETURN(false, NULL);
 | |
|   return CefListValueImpl::GetOrCreateRef(
 | |
|         const_cast<base::ListValue*>(&(const_value().arguments)),
 | |
|         const_cast<Cef_Request_Params*>(&const_value()),
 | |
|         read_only(),
 | |
|         controller());
 | |
| }
 |