Skip to content
Snippets Groups Projects
Commit 0a378167 authored by Monroe Linden's avatar Monroe Linden
Browse files

Minor cleanup: make data members in LLViewerMediaImpl private.

This required adding one accessor and making two related classes friends of LLViewerMediaImpl.
parent d33b72c3
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,10 @@ class LLViewerMediaImpl
{
LOG_CLASS(LLViewerMediaImpl);
public:
friend class LLViewerMedia;
friend class LLMimeDiscoveryResponder;
LLViewerMediaImpl(
const LLUUID& texture_id,
S32 media_width,
......@@ -207,7 +210,10 @@ class LLViewerMediaImpl
void setDisabled(bool disabled);
bool isMediaDisabled() const { return mIsDisabled; };
void setInNearbyMediaList(bool in_list) { mInNearbyMediaList = in_list; }
bool getInNearbyMediaList() { return mInNearbyMediaList; }
// returns true if this instance should not be loaded (disabled, muted object, crashed, etc.)
bool isForcedUnloaded() const;
......@@ -312,8 +318,7 @@ class LLViewerMediaImpl
void setNavState(EMediaNavState state);
void cancelMimeTypeProbe();
public:
private:
// a single media url with some data and an impl.
LLPluginClassMedia* mMediaSource;
LLUUID mTextureId;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment