include/internal/cef_linux.h [42:63]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - struct CefMainArgsTraits { typedef cef_main_args_t struct_type; static inline void init(struct_type* s) {} static inline void clear(struct_type* s) {} static inline void set(const struct_type* src, struct_type* target, bool copy) { target->argc = src->argc; target->argv = src->argv; } }; // Class representing CefExecuteProcess arguments. class CefMainArgs : public CefStructBase { public: typedef CefStructBase parent; CefMainArgs() : parent() {} explicit CefMainArgs(const cef_main_args_t& r) : parent(r) {} explicit CefMainArgs(const CefMainArgs& r) : parent(r) {} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - include/internal/cef_mac.h [42:63]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - struct CefMainArgsTraits { typedef cef_main_args_t struct_type; static inline void init(struct_type* s) {} static inline void clear(struct_type* s) {} static inline void set(const struct_type* src, struct_type* target, bool copy) { target->argc = src->argc; target->argv = src->argv; } }; // Class representing CefExecuteProcess arguments. class CefMainArgs : public CefStructBase { public: typedef CefStructBase parent; CefMainArgs() : parent() {} explicit CefMainArgs(const cef_main_args_t& r) : parent(r) {} explicit CefMainArgs(const CefMainArgs& r) : parent(r) {} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -