~ubuntu-branches/ubuntu/trusty/totem/trusty-proposed

« back to all changes in this revision

Viewing changes to browser-plugin/totemBasicPlugin.h

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette, Josselin Mouette, Loic Minier, Sjoerd Simons
  • Date: 2008-09-10 15:38:34 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080910153834-kxne946nj2b5squf
Tags: 2.22.2-4
[ Josselin Mouette ]
* Change the recommends on g-c-c to one on g-s-d. Also move it to
  totem-plugins, which is the package providing the media keys
  functionality.
* Change the depends on dbus to dbus-x11.

[ Loic Minier ]
* Let totem-gstreamer recommend gnome-app-install for easy codec
  installation.

[ Josselin Mouette ]
* 02_flv.patch: the canonical MIME type for Flash videos is 
  video/x-flv, not video/flv. Closes: #486468.

[ Sjoerd Simons ]
* 30_fix_youtube_plugin.patch: Set the server as a keyword argument to be
  compatible with both old and new versions of python-gdata. Fixes searching
  for youtube videos
* debian/control.in: Fix double Recommend field for totem-gstreamer

[ Josselin Mouette ]
* rules: rally disable the vala plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19
19
 * Boston, MA 02111-1307, USA.
20
20
 *
21
 
 * $Id: totemBasicPlugin.h 3408 2006-08-11 13:25:44Z chpe $
 
21
 * $Id: totemBasicPlugin.h 5065 2008-02-04 14:32:50Z hadess $
22
22
 */
23
23
 
24
 
#ifndef __GMP_PLAYER_H__
25
 
#define __GMP_PLAYER_H__
 
24
#ifndef __BASIC_PLUGIN_H__
 
25
#define __BASIC_PLUGIN_H__
26
26
 
27
27
#include <nsIClassInfo.h>
28
28
 
40
40
    totemScriptablePlugin (totemPlugin *aPlugin);
41
41
 
42
42
    PRBool IsValid () { return mPlugin != nsnull; }
43
 
    void UnsetPlugin () { mPlugin = nsnull; }
 
43
    void SetPlugin (totemPlugin *aPlugin) { mPlugin = aPlugin; }
44
44
 
45
45
    static char *PluginDescription ();
 
46
    static char *PluginLongDescription();
46
47
    static void PluginMimeTypes (const totemPluginMimeEntry **, PRUint32 *);
47
48
  private:
48
49
    ~totemScriptablePlugin ();
50
51
    totemPlugin *mPlugin;
51
52
};
52
53
 
53
 
#endif /* __GMP_PLAYER_H__ */
 
54
#endif /* __BASIC_PLUGIN_H__ */