diff options
author | Rick Pasetto <rick@lindenlab.com> | 2010-01-08 12:18:21 -0800 |
---|---|---|
committer | Rick Pasetto <rick@lindenlab.com> | 2010-01-08 12:18:21 -0800 |
commit | f5fd0729b6303933c1c67171eec1701fa4d8c55e (patch) | |
tree | 1beafc1d4d86070480a047105cff43435d6a0092 /indra/newview/llviewermedia.h | |
parent | 6a1a93be1addb3cdb86fd163046a051344312cf2 (diff) |
FIX EXT-4052: don't bounce back if url does not pass whitelist
http://codereview.lindenlab.com/265005/show
Diffstat (limited to 'indra/newview/llviewermedia.h')
-rw-r--r-- | indra/newview/llviewermedia.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llviewermedia.h b/indra/newview/llviewermedia.h index 5e4dd8ff30..ad08846f7e 100644 --- a/indra/newview/llviewermedia.h +++ b/indra/newview/llviewermedia.h @@ -202,6 +202,7 @@ public: bool isMediaPaused(); bool hasMedia() const; bool isMediaFailed() const { return mMediaSourceFailed; }; + void setMediaFailed(bool val) { mMediaSourceFailed = val; } void resetPreviousMediaState(); void setDisabled(bool disabled); @@ -311,6 +312,7 @@ public: void setNavState(EMediaNavState state); void cancelMimeTypeProbe(); + public: // a single media url with some data and an impl. LLPluginClassMedia* mMediaSource; |