From 3e17ec7de06cabb97508ebab129c45d6b920f0ae Mon Sep 17 00:00:00 2001 From: "rods%netscape.com" Date: Fri, 21 Dec 2001 01:25:16 +0000 Subject: [PATCH] enabling print progress Bug 113917 r=dcone sr=attinasi git-svn-id: svn://10.0.0.236/trunk@110942 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/content/base/public/Makefile.in | 3 +++ mozilla/content/base/public/makefile.win | 3 +++ mozilla/content/base/src/Makefile.in | 3 +++ mozilla/content/base/src/makefile.win | 3 +++ 4 files changed, 12 insertions(+) diff --git a/mozilla/content/base/public/Makefile.in b/mozilla/content/base/public/Makefile.in index 15fbab9a2e4..c5c9382c4c8 100644 --- a/mozilla/content/base/public/Makefile.in +++ b/mozilla/content/base/public/Makefile.in @@ -68,6 +68,9 @@ XPIDLSRCS = \ nsISelectionPrivate.idl \ nsIScriptLoader.idl \ nsIScriptLoaderObserver.idl \ + nsIPrintProgress.idl \ + nsIPrintProgressParams.idl \ + nsIPrintStatusFeedback.idl \ $(NULL) include $(topsrcdir)/config/rules.mk diff --git a/mozilla/content/base/public/makefile.win b/mozilla/content/base/public/makefile.win index 0b013c77a44..193685b1fb8 100644 --- a/mozilla/content/base/public/makefile.win +++ b/mozilla/content/base/public/makefile.win @@ -63,6 +63,9 @@ XPIDLSRCS= \ .\nsISelectionPrivate.idl \ .\nsIScriptLoader.idl \ .\nsIScriptLoaderObserver.idl \ + .\nsIPrintProgress.idl \ + .\nsIPrintStatusFeedback.idl \ + .\nsIPrintProgressParams.idl \ $(NULL) diff --git a/mozilla/content/base/src/Makefile.in b/mozilla/content/base/src/Makefile.in index 6bea81448c2..85b5390fdb0 100644 --- a/mozilla/content/base/src/Makefile.in +++ b/mozilla/content/base/src/Makefile.in @@ -54,6 +54,7 @@ REQUIRES = xpcom \ windowwatcher \ imglib2 \ gfx2 \ + uriloader \ webbrwsr \ $(NULL) @@ -66,6 +67,8 @@ CPPSRCS = \ nsDocumentEncoder.cpp \ nsDocumentFragment.cpp \ nsDocumentViewer.cpp \ + nsPrintProgress.cpp \ + nsPrintProgressParams.cpp \ nsDOMAttribute.cpp \ nsDOMAttributeMap.cpp \ nsDOMDocumentType.cpp \ diff --git a/mozilla/content/base/src/makefile.win b/mozilla/content/base/src/makefile.win index 12a0797c5d2..059d9b1f544 100644 --- a/mozilla/content/base/src/makefile.win +++ b/mozilla/content/base/src/makefile.win @@ -55,10 +55,13 @@ REQUIRES = xpcom \ intl \ imglib2 \ gfx2 \ + uriloader \ webBrowser_core\ $(NULL) CPP_OBJS= \ + .\$(OBJDIR)\nsPrintProgress.obj \ + .\$(OBJDIR)\nsPrintProgressParams.obj \ .\$(OBJDIR)\nsStyleContext.obj \ .\$(OBJDIR)\nsStyleSet.obj \ .\$(OBJDIR)\nsCommentNode.obj \