mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Add support for V8 ArrayBuffers (issue #244)
This commit is contained in:
committed by
Marshall Greenblatt
parent
bb28b85bdd
commit
4315f3b724
@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=8a913ff3ac0743621e969fed20ce713804ac4f16$
|
||||
// $hash=72b98313f1c00f864fd01694eb741f066ae2c5f4$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CTOCPP_V8VALUE_CTOCPP_H_
|
||||
@ -44,6 +44,7 @@ class CefV8ValueCToCpp
|
||||
bool IsString() OVERRIDE;
|
||||
bool IsObject() OVERRIDE;
|
||||
bool IsArray() OVERRIDE;
|
||||
bool IsArrayBuffer() OVERRIDE;
|
||||
bool IsFunction() OVERRIDE;
|
||||
bool IsSame(CefRefPtr<CefV8Value> that) OVERRIDE;
|
||||
bool GetBoolValue() OVERRIDE;
|
||||
@ -77,6 +78,9 @@ class CefV8ValueCToCpp
|
||||
int GetExternallyAllocatedMemory() OVERRIDE;
|
||||
int AdjustExternallyAllocatedMemory(int change_in_bytes) OVERRIDE;
|
||||
int GetArrayLength() OVERRIDE;
|
||||
CefRefPtr<CefV8ArrayBufferReleaseCallback> GetArrayBufferReleaseCallback()
|
||||
OVERRIDE;
|
||||
bool NeuterArrayBuffer() OVERRIDE;
|
||||
CefString GetFunctionName() OVERRIDE;
|
||||
CefRefPtr<CefV8Handler> GetFunctionHandler() OVERRIDE;
|
||||
CefRefPtr<CefV8Value> ExecuteFunction(
|
||||
|
Reference in New Issue
Block a user