mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Mac: Add make_distrib support (issue #260)
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@298 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -297,7 +297,7 @@ bool CefV8ValueCToCpp::DeleteValue(int index)
|
||||
CefRefPtr<CefV8Value> CefV8ValueCToCpp::GetValue(const CefString& key)
|
||||
{
|
||||
if(CEF_MEMBER_MISSING(struct_, get_value_bykey))
|
||||
return false;
|
||||
return NULL;
|
||||
|
||||
cef_v8value_t* valueStruct = struct_->get_value_bykey(struct_,
|
||||
key.GetStruct());
|
||||
@@ -309,7 +309,7 @@ CefRefPtr<CefV8Value> CefV8ValueCToCpp::GetValue(const CefString& key)
|
||||
CefRefPtr<CefV8Value> CefV8ValueCToCpp::GetValue(int index)
|
||||
{
|
||||
if(CEF_MEMBER_MISSING(struct_, get_value_byindex))
|
||||
return false;
|
||||
return NULL;
|
||||
|
||||
cef_v8value_t* valueStruct = struct_->get_value_byindex(struct_, index);
|
||||
if(valueStruct)
|
||||
@@ -363,7 +363,7 @@ bool CefV8ValueCToCpp::GetKeys(std::vector<CefString>& keys)
|
||||
CefRefPtr<CefBase> CefV8ValueCToCpp::GetUserData()
|
||||
{
|
||||
if(CEF_MEMBER_MISSING(struct_, get_user_data))
|
||||
return false;
|
||||
return NULL;
|
||||
|
||||
cef_base_t* baseStruct = struct_->get_user_data(struct_);
|
||||
if(baseStruct)
|
||||
@@ -393,7 +393,7 @@ CefString CefV8ValueCToCpp::GetFunctionName()
|
||||
CefRefPtr<CefV8Handler> CefV8ValueCToCpp::GetFunctionHandler()
|
||||
{
|
||||
if(CEF_MEMBER_MISSING(struct_, get_function_handler))
|
||||
return false;
|
||||
return NULL;
|
||||
|
||||
cef_v8handler_t* handlerStruct = struct_->get_function_handler(struct_);
|
||||
if(handlerStruct)
|
||||
|
Reference in New Issue
Block a user