| 4 | #include "include/capi/cef_v8_capi.h" |
| 5 | |
| 6 | struct V8ValueBase |
| 7 | { |
| 8 | inline cef_v8value_t *ptr() |
| 9 | { |
| 10 | return &_; |
| 11 | } |
| 12 | |
| 13 | protected: |
| 14 | cef_v8value_t _; |
| 15 | }; |
| 16 | |
| 17 | struct V8Value : V8ValueBase |
| 18 | { |
nothing calls this directly
no outgoing calls
no test coverage detected