mirror of
https://github.com/atom/atom.git
synced 2026-02-15 17:15:24 -05:00
This adds support for accessing native extensions in web workers, though it may not work quite how we need it to just yet. Figured we'd bank an upgrade anyway.
70 lines
2.6 KiB
C++
70 lines
2.6 KiB
C++
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
// can be found in the LICENSE file.
|
|
//
|
|
// ---------------------------------------------------------------------------
|
|
//
|
|
// This file was generated by the CEF translator tool. If making changes by
|
|
// hand only do so within the body of existing method and function
|
|
// implementations. See the translator.README.txt file in the tools directory
|
|
// for more information.
|
|
//
|
|
|
|
#ifndef CEF_LIBCEF_DLL_CTOCPP_FRAME_CTOCPP_H_
|
|
#define CEF_LIBCEF_DLL_CTOCPP_FRAME_CTOCPP_H_
|
|
#pragma once
|
|
|
|
#ifndef USING_CEF_SHARED
|
|
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
|
|
#else // USING_CEF_SHARED
|
|
|
|
#include "include/cef_frame.h"
|
|
#include "include/capi/cef_frame_capi.h"
|
|
#include "include/cef_browser.h"
|
|
#include "include/capi/cef_browser_capi.h"
|
|
#include "include/cef_v8.h"
|
|
#include "include/capi/cef_v8_capi.h"
|
|
#include "libcef_dll/ctocpp/ctocpp.h"
|
|
|
|
// Wrap a C structure with a C++ class.
|
|
// This class may be instantiated and accessed wrapper-side only.
|
|
class CefFrameCToCpp
|
|
: public CefCToCpp<CefFrameCToCpp, CefFrame, cef_frame_t> {
|
|
public:
|
|
explicit CefFrameCToCpp(cef_frame_t* str)
|
|
: CefCToCpp<CefFrameCToCpp, CefFrame, cef_frame_t>(str) {}
|
|
virtual ~CefFrameCToCpp() {}
|
|
|
|
// CefFrame methods
|
|
virtual bool IsValid() OVERRIDE;
|
|
virtual void Undo() OVERRIDE;
|
|
virtual void Redo() OVERRIDE;
|
|
virtual void Cut() OVERRIDE;
|
|
virtual void Copy() OVERRIDE;
|
|
virtual void Paste() OVERRIDE;
|
|
virtual void Delete() OVERRIDE;
|
|
virtual void SelectAll() OVERRIDE;
|
|
virtual void ViewSource() OVERRIDE;
|
|
virtual void GetSource(CefRefPtr<CefStringVisitor> visitor) OVERRIDE;
|
|
virtual void GetText(CefRefPtr<CefStringVisitor> visitor) OVERRIDE;
|
|
virtual void LoadRequest(CefRefPtr<CefRequest> request) OVERRIDE;
|
|
virtual void LoadURL(const CefString& url) OVERRIDE;
|
|
virtual void LoadString(const CefString& string_val,
|
|
const CefString& url) OVERRIDE;
|
|
virtual void ExecuteJavaScript(const CefString& code,
|
|
const CefString& script_url, int start_line) OVERRIDE;
|
|
virtual bool IsMain() OVERRIDE;
|
|
virtual bool IsFocused() OVERRIDE;
|
|
virtual CefString GetName() OVERRIDE;
|
|
virtual int64 GetIdentifier() OVERRIDE;
|
|
virtual CefRefPtr<CefFrame> GetParent() OVERRIDE;
|
|
virtual CefString GetURL() OVERRIDE;
|
|
virtual CefRefPtr<CefBrowser> GetBrowser() OVERRIDE;
|
|
virtual CefRefPtr<CefV8Context> GetV8Context() OVERRIDE;
|
|
virtual void VisitDOM(CefRefPtr<CefDOMVisitor> visitor) OVERRIDE;
|
|
};
|
|
|
|
#endif // USING_CEF_SHARED
|
|
#endif // CEF_LIBCEF_DLL_CTOCPP_FRAME_CTOCPP_H_
|
|
|