Merge revision 434 and 436 changes:

- Make the |url| parameter to OnBeforePopup() optional.
- Include CEF and Chromium version information in binary distributions (issue #325).

git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/963@437 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2011-12-21 19:25:38 +00:00
parent 5bd72a4688
commit 11edadd02c
7 changed files with 61 additions and 32 deletions

View File

@ -40,10 +40,6 @@ int CEF_CALLBACK life_span_handler_on_before_popup(
DCHECK(windowInfo);
if (!windowInfo)
return 0;
// Verify param: url; type: string_byref_const
DCHECK(url);
if (!url)
return 0;
// Verify param: client; type: refptr_same_byref
DCHECK(client);
if (!client)
@ -52,6 +48,7 @@ int CEF_CALLBACK life_span_handler_on_before_popup(
DCHECK(settings);
if (!settings)
return 0;
// Unverified params: url
// Translate param: popupFeatures; type: struct_byref_const
CefPopupFeatures popupFeaturesObj;