embedding/browser/photon/src/EmbedPrintListener.h - Revision 1.1

There were 3 changes made.
Legend
   Added lines
   Changed lines
   Removed lines

embedding/browser/photon/src/EmbedPrintListener.h,1.1
.
Disk File
Skipping to line 21. 
 */
.
 */
 
.
 
#ifndef __EmbedPrintListener_h
.
#ifndef __EmbedPrintListener_h
#define __EmbedPrintListener_h
.
#define __EmbedPrintListener_h
 
.
 
#include <nsIPrintListener.h>
.
#include <nsIWebProgressListener.h>
 
.
 
class EmbedPrivate;
.
class EmbedPrivate;
 
.
 
class EmbedPrintListener : public nsIPrintListener
.
class EmbedPrintListener : public nsIWebProgressListener
{
.
{
 public:
.
 public:
 
.
 
  EmbedPrintListener();
.
  EmbedPrintListener();
  virtual ~EmbedPrintListener();
.
  virtual ~EmbedPrintListener();
Skipping to line 38. 
 
.
 
	void InvokePrintCallback(int, unsigned int, unsigned int);
.
	void InvokePrintCallback(int, unsigned int, unsigned int);
 
.
 
  NS_DECL_ISUPPORTS
.
  NS_DECL_ISUPPORTS
 
.
 
  NS_DECL_NSIPRINTLISTENER
.
  NS_DECL_NSIWEBPROGRESSLISTENER
 
.
 
 private:
.
 private:
 
.
 
  EmbedPrivate *mOwner;
.
  EmbedPrivate *mOwner;
  
.