mirror of
https://github.com/atom/atom.git
synced 2026-01-22 21:38:10 -05: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 |