diff options
| author | Baker Linden <baker@lindenlab.com> | 2013-12-18 18:25:47 -0500 | 
|---|---|---|
| committer | Baker Linden <baker@lindenlab.com> | 2013-12-18 18:25:47 -0500 | 
| commit | 3c521d8207092f1c48e158082b88c5e81cc9c440 (patch) | |
| tree | 36a18cfaed8fc4e3ee2a84604f3876832522e529 /indra/newview/llfloaterwebcontent.h | |
| parent | 74707f0057c05dc4dd439302e64fe29e8ed91a32 (diff) | |
| parent | 1a9b9f1bd1b5f64b35b9ce6eff458cdb7a79fe6e (diff) | |
viewer-release merge
Diffstat (limited to 'indra/newview/llfloaterwebcontent.h')
| -rwxr-xr-x | indra/newview/llfloaterwebcontent.h | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/indra/newview/llfloaterwebcontent.h b/indra/newview/llfloaterwebcontent.h index cfc87e9015..f22940cd07 100755 --- a/indra/newview/llfloaterwebcontent.h +++ b/indra/newview/llfloaterwebcontent.h @@ -43,6 +43,7 @@ class LLFloaterWebContent :  	public LLInstanceTracker<LLFloaterWebContent, std::string>  {  public: +  	typedef LLInstanceTracker<LLFloaterWebContent, std::string> instance_tracker_t;      LOG_CLASS(LLFloaterWebContent); @@ -54,6 +55,7 @@ public:  								id;  		Optional<bool>			show_chrome,  								allow_address_entry, +                                allow_back_forward_navigation,  								trusted_content,  								show_page_title;  		Optional<LLRect>		preferred_media_size; @@ -105,9 +107,12 @@ protected:  	LLView*			mBtnReload;  	LLView*			mBtnStop; -	std::string		mCurrentURL; +	std::string		mCurrentURL;    // Current URL +	std::string		mDisplayURL;    // URL being displayed in the address bar (can differ by trailing / leading space)  	std::string		mUUID;  	bool			mShowPageTitle; +    bool            mAllowNavigation; +    bool            mSecureURL;     // true when the current url is prefixed "https://"  };  #endif  // LL_LLFLOATERWEBCONTENT_H | 
