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:
Marshall Greenblatt 2012-11-27 16:07:35 +00:00
parent 43fcf821f5
commit cc2801d1d5
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ bool CefContentRendererClient::HandleNavigation(
requestImpl->Set(request);
requestImpl->SetReadOnly(true);
cef_navigation_type_t navigation_type;
cef_navigation_type_t navigation_type = NAVIGATION_OTHER;
switch (type) {
case WebKit::WebNavigationTypeLinkClicked:
navigation_type = NAVIGATION_LINK_CLICKED;