mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 18:24:09 +03:00
11 lines
350 B
C
11 lines
350 B
C
#ifndef ATOM_CEF_CLIENT_H_
|
|
#define ATOM_CEF_CLIENT_H_
|
|
#pragma once
|
|
|
|
#include "include/cef_v8.h"
|
|
|
|
// IPC data translation functions: translate a V8 array to a List, and vice versa
|
|
void TranslateList(CefRefPtr<CefV8Value> source, CefRefPtr<CefListValue> target);
|
|
void TranslateList(CefRefPtr<CefListValue> source, CefRefPtr<CefV8Value> target);
|
|
|
|
#endif |