Files
atom/Atom/src/native_handler.h
Corey Johnson & Nathan Sobo 7e6132f5b7 Redo Xcode project FROM SCRATCH
2012-02-29 15:23:17 -08:00

19 lines
599 B
Objective-C

#import "include/cef.h"
#import <Cocoa/Cocoa.h>
class NativeHandler : public CefV8Handler {
public:
NativeHandler();
CefRefPtr<CefV8Value> m_object;
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(NativeHandler);
};