本文整理汇总了C++中ipc::ArgumentDecoder::decode方法的典型用法代码示例。如果您正苦于以下问题:C++ ArgumentDecoder::decode方法的具体用法?C++ ArgumentDecoder::decode怎么用?C++ ArgumentDecoder::decode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ipc::ArgumentDecoder
的用法示例。
在下文中一共展示了ArgumentDecoder::decode方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: decode
bool ContextMenuContextData::decode(IPC::ArgumentDecoder& decoder, ContextMenuContextData& result)
{
if (!decoder.decode(result.m_menuLocation))
return false;
if (!decoder.decode(result.m_menuItems))
return false;
if (!decoder.decode(result.m_webHitTestResultData))
return false;
if (!decoder.decode(result.m_selectedText))
return false;
#if ENABLE(SERVICE_CONTROLS)
ShareableBitmap::Handle handle;
if (!decoder.decode(handle))
return false;
if (!handle.isNull())
result.m_controlledImage = ShareableBitmap::create(handle, SharedMemory::Protection::ReadOnly);
#endif
return true;
}
示例2: decode
bool WebPreferencesStore::decode(IPC::ArgumentDecoder& decoder, WebPreferencesStore& result)
{
if (!decoder.decode(result.m_values))
return false;
if (!decoder.decode(result.m_overridenDefaults))
return false;
return true;
}
示例3: decode
bool PageState::decode(IPC::ArgumentDecoder& decoder, PageState& result)
{
if (!decoder.decode(result.title))
return false;
if (!decoder.decode(result.mainFrameState))
return false;
return true;
}
示例4: decode
bool WebsiteData::decode(IPC::ArgumentDecoder& decoder, WebsiteData& result)
{
if (!decoder.decode(result.entries))
return false;
if (!decoder.decode(result.hostNamesWithCookies))
return false;
return true;
}
示例5: decode
bool WebScriptMessageHandlerHandle::decode(IPC::ArgumentDecoder& decoder, WebScriptMessageHandlerHandle& handle)
{
if (!decoder.decode(handle.identifier))
return false;
if (!decoder.decode(handle.name))
return false;
return true;
}
示例6:
bool ShareableBitmap::Handle::decode(IPC::ArgumentDecoder& decoder, Handle& handle)
{
if (!decoder.decode(handle.m_handle))
return false;
if (!decoder.decode(handle.m_size))
return false;
if (!decoder.decode(handle.m_flags))
return false;
return true;
}
示例7:
bool ShareableResource::Handle::decode(IPC::ArgumentDecoder& decoder, Handle& handle)
{
if (!decoder.decode(handle.m_handle))
return false;
if (!decoder.decode(handle.m_offset))
return false;
if (!decoder.decode(handle.m_size))
return false;
return true;
}
示例8: decode
bool WebCompiledContentExtensionData::decode(IPC::ArgumentDecoder& decoder, WebCompiledContentExtensionData& compiledContentExtensionData)
{
SharedMemory::Handle handle;
if (!decoder.decode(handle))
return false;
compiledContentExtensionData.data = SharedMemory::map(handle, SharedMemory::Protection::ReadOnly);
if (!decoder.decode(compiledContentExtensionData.actionsOffset))
return false;
if (!decoder.decode(compiledContentExtensionData.actionsSize))
return false;
if (!decoder.decode(compiledContentExtensionData.filtersWithoutDomainsBytecodeOffset))
return false;
if (!decoder.decode(compiledContentExtensionData.filtersWithoutDomainsBytecodeSize))
return false;
if (!decoder.decode(compiledContentExtensionData.filtersWithDomainsBytecodeOffset))
return false;
if (!decoder.decode(compiledContentExtensionData.filtersWithDomainsBytecodeSize))
return false;
if (!decoder.decode(compiledContentExtensionData.domainFiltersBytecodeOffset))
return false;
if (!decoder.decode(compiledContentExtensionData.domainFiltersBytecodeSize))
return false;
return true;
}
示例9: decode
bool SecurityOriginData::decode(IPC::ArgumentDecoder& decoder, SecurityOriginData& securityOriginData)
{
if (!decoder.decode(securityOriginData.protocol))
return false;
if (!decoder.decode(securityOriginData.host))
return false;
if (!decoder.decode(securityOriginData.port))
return false;
return true;
}
示例10: decode
bool PageState::decode(IPC::ArgumentDecoder& decoder, PageState& result)
{
if (!decoder.decode(result.title))
return false;
if (!decoder.decode(result.mainFrameState))
return false;
if (!decoder.decodeEnum(result.shouldOpenExternalURLsPolicy) || !isValidEnum(result.shouldOpenExternalURLsPolicy))
return false;
return true;
}
示例11: decode
bool WebPageGroupData::decode(IPC::ArgumentDecoder& decoder, WebPageGroupData& data)
{
if (!decoder.decode(data.identifier))
return false;
if (!decoder.decode(data.pageGroupID))
return false;
if (!decoder.decode(data.visibleToInjectedBundle))
return false;
if (!decoder.decode(data.visibleToHistoryClient))
return false;
if (!decoder.decode(data.userContentControllerIdentifier))
return false;
return true;
}
示例12: decode
bool WebGestureEvent::decode(IPC::ArgumentDecoder& decoder, WebGestureEvent& result)
{
if (!WebEvent::decode(decoder, result))
return false;
if (!decoder.decode(result.m_position))
return false;
if (!decoder.decode(result.m_gestureScale))
return false;
if (!decoder.decode(result.m_gestureRotation))
return false;
return true;
}
示例13: decode
bool PlatformPopupMenuData::decode(IPC::ArgumentDecoder& decoder, PlatformPopupMenuData& data)
{
#if PLATFORM(COCOA)
if (!decoder.decode(data.fontInfo))
return false;
if (!decoder.decode(data.shouldPopOver))
return false;
#else
UNUSED_PARAM(decoder);
UNUSED_PARAM(data);
#endif
return true;
}
示例14: ASSERT
bool SharedMemory::Handle::decode(IPC::ArgumentDecoder& decoder, Handle& handle)
{
ASSERT(!handle.m_port);
ASSERT(!handle.m_size);
uint64_t size;
if (!decoder.decode(size))
return false;
IPC::MachPort machPort;
if (!decoder.decode(machPort))
return false;
handle.m_size = size;
handle.m_port = machPort.port();
return true;
}
示例15: USE
bool WebCoordinatedSurface::Handle::decode(IPC::ArgumentDecoder& decoder, Handle& handle)
{
if (!decoder.decode(handle.m_size))
return false;
if (!decoder.decode(handle.m_flags))
return false;
#if USE(GRAPHICS_SURFACE)
if (!decoder.decode(handle.m_graphicsSurfaceToken))
return false;
if (handle.m_graphicsSurfaceToken.isValid())
return true;
#endif
if (!decoder.decode(handle.m_bitmapHandle))
return false;
return true;
}