#ifndef ATOM_CEF_APP_H_ #define ATOM_CEF_APP_H_ #pragma once #include "include/cef_app.h" #include "atom_cef_render_process_handler.h" class AtomCefApp : public CefApp { virtual CefRefPtr GetRenderProcessHandler() OVERRIDE { return CefRefPtr(new AtomCefRenderProcessHandler); } IMPLEMENT_REFCOUNTING(AtomCefApp); }; #endif