mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-15 14:15:50 -06:00
25 lines
371 B
Objective-C
25 lines
371 B
Objective-C
//
|
|
// AWRenderer.h
|
|
// CSBrowserCapturePlugin
|
|
//
|
|
// Created by Zakk on 1/2/15.
|
|
// Copyright (c) 2015 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#include <Awesomium/WebCore.h>
|
|
|
|
|
|
|
|
|
|
@interface AWRenderer : NSObject
|
|
{
|
|
IOSurfaceRef _renderSurface;
|
|
Awesomium::WebCore *_webCore;
|
|
Awesomium::WebView *webView;
|
|
NSString *_myURL;
|
|
}
|
|
|
|
|
|
|
|
@end
|