Results 32 comments of Tamas Lustyik

well, that's gonna be tricky since that class is part of libcef_dll_wrapper which is a pure C++ API...

do you want to use swift in the renderer process as well?

based on what I see in the documentation in `cef_message_router.h`, you'll need to set up both sides of the channel yourself

I've done some research, it's not impossible but it involves: - modifying CEF a bit - creating a C API for the C++ classes - restructuring CEF.swift - wrapping the...

> Oh, I see. CefMessageRouter implies renderer in swift. (solution to getting rid of duplicate swift std libs needed) Even if you use CefMessageRouter, you can have Swift on one...

Bridging the wrapper classes is indeed feasible but I always tried to avoid dumping them into the `CEFswift` module itself because I felt that they didn't belong there. On the...

I've made some progress with the message router, hopefully I can get it to work on a branch around the weekend.

@SyberToto I've created a gitter room for this discussion: https://gitter.im/CEF-swift/wrapper-classes

here is where I am with it: https://github.com/lvsti/CEF.swift/tree/wrapper-classes-redux

sneak peek into the no-prefix world: https://github.com/lvsti/CEF.swift/tree/no_prefix personally I feel unsure about making the move...