Linux: Fix compile error due to uninitialized enum variable (issue #785).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@929 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
43fcf821f5
commit
cc2801d1d5
|
@ -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…
Reference in New Issue