2012-01-10 00:46:23 +01:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
|
2010-10-03 23:04:50 +02:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
//
|
2011-12-08 02:38:30 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2010-10-03 23:04:50 +02:00
|
|
|
//
|
2011-12-08 02:38:30 +01:00
|
|
|
// 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.
|
2010-10-03 23:04:50 +02:00
|
|
|
//
|
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#ifndef CEF_LIBCEF_DLL_CTOCPP_V8VALUE_CTOCPP_H_
|
|
|
|
#define CEF_LIBCEF_DLL_CTOCPP_V8VALUE_CTOCPP_H_
|
|
|
|
#pragma once
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
#ifndef USING_CEF_SHARED
|
|
|
|
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
|
2012-01-10 00:46:23 +01:00
|
|
|
#else // USING_CEF_SHARED
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#include <vector>
|
2011-12-23 18:36:30 +01:00
|
|
|
#include "include/cef_v8.h"
|
|
|
|
#include "include/capi/cef_v8_capi.h"
|
2010-10-03 23:04:50 +02:00
|
|
|
#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 CefV8ValueCToCpp
|
2012-01-10 00:46:23 +01:00
|
|
|
: public CefCToCpp<CefV8ValueCToCpp, CefV8Value, cef_v8value_t> {
|
|
|
|
public:
|
|
|
|
explicit CefV8ValueCToCpp(cef_v8value_t* str)
|
2010-10-03 23:04:50 +02:00
|
|
|
: CefCToCpp<CefV8ValueCToCpp, CefV8Value, cef_v8value_t>(str) {}
|
|
|
|
virtual ~CefV8ValueCToCpp() {}
|
|
|
|
|
|
|
|
// CefV8Value methods
|
2012-10-29 22:54:57 +01:00
|
|
|
virtual bool IsValid() OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual bool IsUndefined() OVERRIDE;
|
|
|
|
virtual bool IsNull() OVERRIDE;
|
|
|
|
virtual bool IsBool() OVERRIDE;
|
|
|
|
virtual bool IsInt() OVERRIDE;
|
2012-05-23 21:01:04 +02:00
|
|
|
virtual bool IsUInt() OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual bool IsDouble() OVERRIDE;
|
2011-05-23 19:43:53 +02:00
|
|
|
virtual bool IsDate() OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual bool IsString() OVERRIDE;
|
|
|
|
virtual bool IsObject() OVERRIDE;
|
|
|
|
virtual bool IsArray() OVERRIDE;
|
|
|
|
virtual bool IsFunction() OVERRIDE;
|
|
|
|
virtual bool IsSame(CefRefPtr<CefV8Value> that) OVERRIDE;
|
|
|
|
virtual bool GetBoolValue() OVERRIDE;
|
2012-05-23 21:01:04 +02:00
|
|
|
virtual int32 GetIntValue() OVERRIDE;
|
|
|
|
virtual uint32 GetUIntValue() OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual double GetDoubleValue() OVERRIDE;
|
2011-05-23 19:43:53 +02:00
|
|
|
virtual CefTime GetDateValue() OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual CefString GetStringValue() OVERRIDE;
|
2012-05-23 21:01:04 +02:00
|
|
|
virtual bool IsUserCreated() OVERRIDE;
|
|
|
|
virtual bool HasException() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefV8Exception> GetException() OVERRIDE;
|
|
|
|
virtual bool ClearException() OVERRIDE;
|
|
|
|
virtual bool WillRethrowExceptions() OVERRIDE;
|
|
|
|
virtual bool SetRethrowExceptions(bool rethrow) OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual bool HasValue(const CefString& key) OVERRIDE;
|
2011-12-08 11:22:15 +01:00
|
|
|
virtual bool HasValue(int index) OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual bool DeleteValue(const CefString& key) OVERRIDE;
|
2011-12-08 11:22:15 +01:00
|
|
|
virtual bool DeleteValue(int index) OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual CefRefPtr<CefV8Value> GetValue(const CefString& key) OVERRIDE;
|
2011-12-08 11:22:15 +01:00
|
|
|
virtual CefRefPtr<CefV8Value> GetValue(int index) OVERRIDE;
|
2011-11-04 20:34:14 +01:00
|
|
|
virtual bool SetValue(const CefString& key, CefRefPtr<CefV8Value> value,
|
|
|
|
PropertyAttribute attribute) OVERRIDE;
|
2011-12-08 11:22:15 +01:00
|
|
|
virtual bool SetValue(int index, CefRefPtr<CefV8Value> value) OVERRIDE;
|
2011-04-07 03:58:49 +02:00
|
|
|
virtual bool SetValue(const CefString& key, AccessControl settings,
|
2011-05-20 16:42:25 +02:00
|
|
|
PropertyAttribute attribute) OVERRIDE;
|
|
|
|
virtual bool GetKeys(std::vector<CefString>& keys) OVERRIDE;
|
2012-05-23 21:01:04 +02:00
|
|
|
virtual bool SetUserData(CefRefPtr<CefBase> user_data) OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual CefRefPtr<CefBase> GetUserData() OVERRIDE;
|
2012-01-19 19:52:59 +01:00
|
|
|
virtual int GetExternallyAllocatedMemory() OVERRIDE;
|
|
|
|
virtual int AdjustExternallyAllocatedMemory(int change_in_bytes) OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual int GetArrayLength() OVERRIDE;
|
|
|
|
virtual CefString GetFunctionName() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefV8Handler> GetFunctionHandler() OVERRIDE;
|
2012-05-23 21:01:04 +02:00
|
|
|
virtual CefRefPtr<CefV8Value> ExecuteFunction(CefRefPtr<CefV8Value> object,
|
|
|
|
const CefV8ValueList& arguments) OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefV8Value> ExecuteFunctionWithContext(
|
|
|
|
CefRefPtr<CefV8Context> context, CefRefPtr<CefV8Value> object,
|
|
|
|
const CefV8ValueList& arguments) OVERRIDE;
|
2010-10-03 23:04:50 +02:00
|
|
|
};
|
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#endif // USING_CEF_SHARED
|
|
|
|
#endif // CEF_LIBCEF_DLL_CTOCPP_V8VALUE_CTOCPP_H_
|
2010-10-03 23:04:50 +02:00
|
|
|
|