mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-20 14:10:40 +01:00
Merge revision 929 changes:
- Linux: Fix compile error due to uninitialized enum variable (issue #785). git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1271@973 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
f44244d180
commit
c7bbf882a9
@ -254,7 +254,7 @@ bool CefContentRendererClient::HandleNavigation(
|
|||||||
requestImpl->Set(request);
|
requestImpl->Set(request);
|
||||||
requestImpl->SetReadOnly(true);
|
requestImpl->SetReadOnly(true);
|
||||||
|
|
||||||
cef_navigation_type_t navigation_type;
|
cef_navigation_type_t navigation_type = NAVIGATION_OTHER;
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case WebKit::WebNavigationTypeLinkClicked:
|
case WebKit::WebNavigationTypeLinkClicked:
|
||||||
navigation_type = NAVIGATION_LINK_CLICKED;
|
navigation_type = NAVIGATION_LINK_CLICKED;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user