public CefWebClient(CefWebBrowserCore context) { this.context = context; this.lifeSpanHandler = new CefWebLifeSpanHandler(context); this.loadHandler = new CefWebLoadHandler(context); this.requestHandler = new CefWebRequestHandler(context); this.displayHandler = new CefWebDisplayHandler(context); this.focusHandler = null; // new CefWebFocusHandler(context); this.keyboardHandler = new CefWebKeyboardHandler(context); this.menuHandler = null; // new CefWebMenuHandler(context); this.printHandler = null; // new CefWebPrintHandler(context); this.findHandler = null; // new CefWebFindHandler(context); this.jsDialogHandler = new CefWebJSDialogHandler(context); this.v8ContextHandler = new CefWebV8ContextHandler(context); this.renderHandler = null; // new CefWebRenderHandler(context); this.dragHandler = null; // new CefWebDragHandler(context); }