mirror of
https://github.com/atom/atom.git
synced 2026-01-24 14:28:14 -05:00
21 lines
506 B
C++
21 lines
506 B
C++
#include "include/cef_base.h"
|
|
#include "include/cef_v8.h"
|
|
|
|
namespace v8_extensions {
|
|
|
|
class Git : public CefV8Handler {
|
|
public:
|
|
Git();
|
|
|
|
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(Git);
|
|
};
|
|
|
|
}
|