pulsar/native/v8_extensions/atom.h

19 lines
533 B
C
Raw Normal View History

2012-09-21 02:46:14 +04:00
#include "include/cef_base.h"
#include "include/cef_v8.h"
namespace v8_extensions {
class Atom : public CefV8Handler {
public:
Atom();
virtual bool Execute(const CefString& name,
CefRefPtr<CefV8Value> object,
const CefV8ValueList& arguments,
CefRefPtr<CefV8Value>& retval,
CefString& exception) OVERRIDE;
// Provide the reference counting implementation for this class.
IMPLEMENT_REFCOUNTING(Atom);
};
}