webengine/wmlengine/src/utils/src/CBrowserSettings.cpp
branchRCL_3
changeset 37 ac77f89b1d9e
parent 26 cb62a4f66ebe
equal deleted inserted replaced
36:c711bdda59f4 37:ac77f89b1d9e
   100     }
   100     }
   101     //
   101     //
   102     iIsEmbedded = NW_FALSE;
   102     iIsEmbedded = NW_FALSE;
   103     iIMEINotifyEnabled = NW_UINT8_CAST( GetIntValue( KBrowserIMEINotification ));
   103     iIMEINotifyEnabled = NW_UINT8_CAST( GetIntValue( KBrowserIMEINotification ));
   104     iSendReferrerHeader = NW_UINT8_CAST( GetIntValue( KBrowserSendReferrerHeader ));
   104     iSendReferrerHeader = NW_UINT8_CAST( GetIntValue( KBrowserSendReferrerHeader ));
   105     //iHttpSecurityWarnings = GetBooleanValue( KWmlBrowserHttpSecurityWarnings );
   105     iHttpSecurityWarnings = GetBooleanValue( KBrowserNGShowSecurityWarnings );
   106     iSecUI = GetBooleanValue( KBrowserSecurityUI );
   106     iSecUI = GetBooleanValue( KBrowserSecurityUI );
   107 
   107 
   108     iIapId = 0;
   108     iIapId = 0;
   109     iObservedSettings = 0;
   109     iObservedSettings = 0;
   110   //iBrowserSettingsObserver = NULL;
   110   //iBrowserSettingsObserver = NULL;
   375 
   375 
   376 NW_Bool
   376 NW_Bool
   377 CBrowserSettings::GetHttpSecurityWarnings(void)
   377 CBrowserSettings::GetHttpSecurityWarnings(void)
   378 {
   378 {
   379   // iSecUI = 1 means "supressing security UI"
   379   // iSecUI = 1 means "supressing security UI"
   380   if( iSecUI )
   380   /*if( iSecUI )
   381     {
   381     {
   382     return NW_FALSE;
   382     return NW_FALSE;
   383     }
   383     }
   384 
   384  */
   385   return iHttpSecurityWarnings;
   385   return iHttpSecurityWarnings;
   386 }
   386 }
   387 
   387 
   388 void
   388 void
   389 CBrowserSettings::SetIAPId(NW_Uint32 aIapId)
   389 CBrowserSettings::SetIAPId(NW_Uint32 aIapId)
   460     }
   460     }
   461 return retVal;
   461 return retVal;
   462 }
   462 }
   463 
   463 
   464 
   464 
       
   465