#include "include/cef_base.h" #include "include/cef_v8.h" namespace v8_extensions { class Git : public CefV8Handler { public: Git(); void CreateContextBinding(CefRefPtr context); virtual bool Execute(const CefString& name, CefRefPtr object, const CefV8ValueList& arguments, CefRefPtr& retval, CefString& exception) OVERRIDE; // Provide the reference counting implementation for this class. IMPLEMENT_REFCOUNTING(Git); private: Git(Git const&); void operator=(Git const&); }; }