LCOV - code coverage report
Current view: directory - objdir/dist/include - nsIWebBrowserFind.h (source / functions) Found Hit Coverage
Test: app.info Lines: 2 0 0.0 %
Date: 2012-06-02 Functions: 2 0 0.0 %

       1                 : /*
       2                 :  * DO NOT EDIT.  THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/embedding/components/find/public/nsIWebBrowserFind.idl
       3                 :  */
       4                 : 
       5                 : #ifndef __gen_nsIWebBrowserFind_h__
       6                 : #define __gen_nsIWebBrowserFind_h__
       7                 : 
       8                 : 
       9                 : #ifndef __gen_nsISupports_h__
      10                 : #include "nsISupports.h"
      11                 : #endif
      12                 : 
      13                 : #ifndef __gen_domstubs_h__
      14                 : #include "domstubs.h"
      15                 : #endif
      16                 : 
      17                 : /* For IDL files that don't want to include root IDL files. */
      18                 : #ifndef NS_NO_VTABLE
      19                 : #define NS_NO_VTABLE
      20                 : #endif
      21                 : 
      22                 : /* starting interface:    nsIWebBrowserFind */
      23                 : #define NS_IWEBBROWSERFIND_IID_STR "2f977d44-5485-11d4-87e2-0010a4e75ef2"
      24                 : 
      25                 : #define NS_IWEBBROWSERFIND_IID \
      26                 :   {0x2f977d44, 0x5485, 0x11d4, \
      27                 :     { 0x87, 0xe2, 0x00, 0x10, 0xa4, 0xe7, 0x5e, 0xf2 }}
      28                 : 
      29               0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIWebBrowserFind : public nsISupports {
      30                 :  public: 
      31                 : 
      32                 :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IWEBBROWSERFIND_IID)
      33                 : 
      34                 :   /* boolean findNext (); */
      35                 :   NS_SCRIPTABLE NS_IMETHOD FindNext(bool *_retval NS_OUTPARAM) = 0;
      36                 : 
      37                 :   /* attribute wstring searchString; */
      38                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchString(PRUnichar * *aSearchString) = 0;
      39                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchString(const PRUnichar * aSearchString) = 0;
      40                 : 
      41                 :   /* attribute boolean findBackwards; */
      42                 :   NS_SCRIPTABLE NS_IMETHOD GetFindBackwards(bool *aFindBackwards) = 0;
      43                 :   NS_SCRIPTABLE NS_IMETHOD SetFindBackwards(bool aFindBackwards) = 0;
      44                 : 
      45                 :   /* attribute boolean wrapFind; */
      46                 :   NS_SCRIPTABLE NS_IMETHOD GetWrapFind(bool *aWrapFind) = 0;
      47                 :   NS_SCRIPTABLE NS_IMETHOD SetWrapFind(bool aWrapFind) = 0;
      48                 : 
      49                 :   /* attribute boolean entireWord; */
      50                 :   NS_SCRIPTABLE NS_IMETHOD GetEntireWord(bool *aEntireWord) = 0;
      51                 :   NS_SCRIPTABLE NS_IMETHOD SetEntireWord(bool aEntireWord) = 0;
      52                 : 
      53                 :   /* attribute boolean matchCase; */
      54                 :   NS_SCRIPTABLE NS_IMETHOD GetMatchCase(bool *aMatchCase) = 0;
      55                 :   NS_SCRIPTABLE NS_IMETHOD SetMatchCase(bool aMatchCase) = 0;
      56                 : 
      57                 :   /* attribute boolean searchFrames; */
      58                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchFrames(bool *aSearchFrames) = 0;
      59                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchFrames(bool aSearchFrames) = 0;
      60                 : 
      61                 : };
      62                 : 
      63                 :   NS_DEFINE_STATIC_IID_ACCESSOR(nsIWebBrowserFind, NS_IWEBBROWSERFIND_IID)
      64                 : 
      65                 : /* Use this macro when declaring classes that implement this interface. */
      66                 : #define NS_DECL_NSIWEBBROWSERFIND \
      67                 :   NS_SCRIPTABLE NS_IMETHOD FindNext(bool *_retval NS_OUTPARAM); \
      68                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchString(PRUnichar * *aSearchString); \
      69                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchString(const PRUnichar * aSearchString); \
      70                 :   NS_SCRIPTABLE NS_IMETHOD GetFindBackwards(bool *aFindBackwards); \
      71                 :   NS_SCRIPTABLE NS_IMETHOD SetFindBackwards(bool aFindBackwards); \
      72                 :   NS_SCRIPTABLE NS_IMETHOD GetWrapFind(bool *aWrapFind); \
      73                 :   NS_SCRIPTABLE NS_IMETHOD SetWrapFind(bool aWrapFind); \
      74                 :   NS_SCRIPTABLE NS_IMETHOD GetEntireWord(bool *aEntireWord); \
      75                 :   NS_SCRIPTABLE NS_IMETHOD SetEntireWord(bool aEntireWord); \
      76                 :   NS_SCRIPTABLE NS_IMETHOD GetMatchCase(bool *aMatchCase); \
      77                 :   NS_SCRIPTABLE NS_IMETHOD SetMatchCase(bool aMatchCase); \
      78                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchFrames(bool *aSearchFrames); \
      79                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchFrames(bool aSearchFrames); 
      80                 : 
      81                 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      82                 : #define NS_FORWARD_NSIWEBBROWSERFIND(_to) \
      83                 :   NS_SCRIPTABLE NS_IMETHOD FindNext(bool *_retval NS_OUTPARAM) { return _to FindNext(_retval); } \
      84                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchString(PRUnichar * *aSearchString) { return _to GetSearchString(aSearchString); } \
      85                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchString(const PRUnichar * aSearchString) { return _to SetSearchString(aSearchString); } \
      86                 :   NS_SCRIPTABLE NS_IMETHOD GetFindBackwards(bool *aFindBackwards) { return _to GetFindBackwards(aFindBackwards); } \
      87                 :   NS_SCRIPTABLE NS_IMETHOD SetFindBackwards(bool aFindBackwards) { return _to SetFindBackwards(aFindBackwards); } \
      88                 :   NS_SCRIPTABLE NS_IMETHOD GetWrapFind(bool *aWrapFind) { return _to GetWrapFind(aWrapFind); } \
      89                 :   NS_SCRIPTABLE NS_IMETHOD SetWrapFind(bool aWrapFind) { return _to SetWrapFind(aWrapFind); } \
      90                 :   NS_SCRIPTABLE NS_IMETHOD GetEntireWord(bool *aEntireWord) { return _to GetEntireWord(aEntireWord); } \
      91                 :   NS_SCRIPTABLE NS_IMETHOD SetEntireWord(bool aEntireWord) { return _to SetEntireWord(aEntireWord); } \
      92                 :   NS_SCRIPTABLE NS_IMETHOD GetMatchCase(bool *aMatchCase) { return _to GetMatchCase(aMatchCase); } \
      93                 :   NS_SCRIPTABLE NS_IMETHOD SetMatchCase(bool aMatchCase) { return _to SetMatchCase(aMatchCase); } \
      94                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchFrames(bool *aSearchFrames) { return _to GetSearchFrames(aSearchFrames); } \
      95                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchFrames(bool aSearchFrames) { return _to SetSearchFrames(aSearchFrames); } 
      96                 : 
      97                 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
      98                 : #define NS_FORWARD_SAFE_NSIWEBBROWSERFIND(_to) \
      99                 :   NS_SCRIPTABLE NS_IMETHOD FindNext(bool *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->FindNext(_retval); } \
     100                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchString(PRUnichar * *aSearchString) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSearchString(aSearchString); } \
     101                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchString(const PRUnichar * aSearchString) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSearchString(aSearchString); } \
     102                 :   NS_SCRIPTABLE NS_IMETHOD GetFindBackwards(bool *aFindBackwards) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFindBackwards(aFindBackwards); } \
     103                 :   NS_SCRIPTABLE NS_IMETHOD SetFindBackwards(bool aFindBackwards) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFindBackwards(aFindBackwards); } \
     104                 :   NS_SCRIPTABLE NS_IMETHOD GetWrapFind(bool *aWrapFind) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWrapFind(aWrapFind); } \
     105                 :   NS_SCRIPTABLE NS_IMETHOD SetWrapFind(bool aWrapFind) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWrapFind(aWrapFind); } \
     106                 :   NS_SCRIPTABLE NS_IMETHOD GetEntireWord(bool *aEntireWord) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEntireWord(aEntireWord); } \
     107                 :   NS_SCRIPTABLE NS_IMETHOD SetEntireWord(bool aEntireWord) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetEntireWord(aEntireWord); } \
     108                 :   NS_SCRIPTABLE NS_IMETHOD GetMatchCase(bool *aMatchCase) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMatchCase(aMatchCase); } \
     109                 :   NS_SCRIPTABLE NS_IMETHOD SetMatchCase(bool aMatchCase) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMatchCase(aMatchCase); } \
     110                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchFrames(bool *aSearchFrames) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSearchFrames(aSearchFrames); } \
     111                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchFrames(bool aSearchFrames) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSearchFrames(aSearchFrames); } 
     112                 : 
     113                 : #if 0
     114                 : /* Use the code below as a template for the implementation class for this interface. */
     115                 : 
     116                 : /* Header file */
     117                 : class nsWebBrowserFind : public nsIWebBrowserFind
     118                 : {
     119                 : public:
     120                 :   NS_DECL_ISUPPORTS
     121                 :   NS_DECL_NSIWEBBROWSERFIND
     122                 : 
     123                 :   nsWebBrowserFind();
     124                 : 
     125                 : private:
     126                 :   ~nsWebBrowserFind();
     127                 : 
     128                 : protected:
     129                 :   /* additional members */
     130                 : };
     131                 : 
     132                 : /* Implementation file */
     133                 : NS_IMPL_ISUPPORTS1(nsWebBrowserFind, nsIWebBrowserFind)
     134                 : 
     135                 : nsWebBrowserFind::nsWebBrowserFind()
     136                 : {
     137                 :   /* member initializers and constructor code */
     138                 : }
     139                 : 
     140                 : nsWebBrowserFind::~nsWebBrowserFind()
     141                 : {
     142                 :   /* destructor code */
     143                 : }
     144                 : 
     145                 : /* boolean findNext (); */
     146                 : NS_IMETHODIMP nsWebBrowserFind::FindNext(bool *_retval NS_OUTPARAM)
     147                 : {
     148                 :     return NS_ERROR_NOT_IMPLEMENTED;
     149                 : }
     150                 : 
     151                 : /* attribute wstring searchString; */
     152                 : NS_IMETHODIMP nsWebBrowserFind::GetSearchString(PRUnichar * *aSearchString)
     153                 : {
     154                 :     return NS_ERROR_NOT_IMPLEMENTED;
     155                 : }
     156                 : NS_IMETHODIMP nsWebBrowserFind::SetSearchString(const PRUnichar * aSearchString)
     157                 : {
     158                 :     return NS_ERROR_NOT_IMPLEMENTED;
     159                 : }
     160                 : 
     161                 : /* attribute boolean findBackwards; */
     162                 : NS_IMETHODIMP nsWebBrowserFind::GetFindBackwards(bool *aFindBackwards)
     163                 : {
     164                 :     return NS_ERROR_NOT_IMPLEMENTED;
     165                 : }
     166                 : NS_IMETHODIMP nsWebBrowserFind::SetFindBackwards(bool aFindBackwards)
     167                 : {
     168                 :     return NS_ERROR_NOT_IMPLEMENTED;
     169                 : }
     170                 : 
     171                 : /* attribute boolean wrapFind; */
     172                 : NS_IMETHODIMP nsWebBrowserFind::GetWrapFind(bool *aWrapFind)
     173                 : {
     174                 :     return NS_ERROR_NOT_IMPLEMENTED;
     175                 : }
     176                 : NS_IMETHODIMP nsWebBrowserFind::SetWrapFind(bool aWrapFind)
     177                 : {
     178                 :     return NS_ERROR_NOT_IMPLEMENTED;
     179                 : }
     180                 : 
     181                 : /* attribute boolean entireWord; */
     182                 : NS_IMETHODIMP nsWebBrowserFind::GetEntireWord(bool *aEntireWord)
     183                 : {
     184                 :     return NS_ERROR_NOT_IMPLEMENTED;
     185                 : }
     186                 : NS_IMETHODIMP nsWebBrowserFind::SetEntireWord(bool aEntireWord)
     187                 : {
     188                 :     return NS_ERROR_NOT_IMPLEMENTED;
     189                 : }
     190                 : 
     191                 : /* attribute boolean matchCase; */
     192                 : NS_IMETHODIMP nsWebBrowserFind::GetMatchCase(bool *aMatchCase)
     193                 : {
     194                 :     return NS_ERROR_NOT_IMPLEMENTED;
     195                 : }
     196                 : NS_IMETHODIMP nsWebBrowserFind::SetMatchCase(bool aMatchCase)
     197                 : {
     198                 :     return NS_ERROR_NOT_IMPLEMENTED;
     199                 : }
     200                 : 
     201                 : /* attribute boolean searchFrames; */
     202                 : NS_IMETHODIMP nsWebBrowserFind::GetSearchFrames(bool *aSearchFrames)
     203                 : {
     204                 :     return NS_ERROR_NOT_IMPLEMENTED;
     205                 : }
     206                 : NS_IMETHODIMP nsWebBrowserFind::SetSearchFrames(bool aSearchFrames)
     207                 : {
     208                 :     return NS_ERROR_NOT_IMPLEMENTED;
     209                 : }
     210                 : 
     211                 : /* End of implementation class template. */
     212                 : #endif
     213                 : 
     214                 : 
     215                 : /* starting interface:    nsIWebBrowserFindInFrames */
     216                 : #define NS_IWEBBROWSERFINDINFRAMES_IID_STR "e0f5d182-34bc-11d5-be5b-b760676c6ebc"
     217                 : 
     218                 : #define NS_IWEBBROWSERFINDINFRAMES_IID \
     219                 :   {0xe0f5d182, 0x34bc, 0x11d5, \
     220                 :     { 0xbe, 0x5b, 0xb7, 0x60, 0x67, 0x6c, 0x6e, 0xbc }}
     221                 : 
     222               0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIWebBrowserFindInFrames : public nsISupports {
     223                 :  public: 
     224                 : 
     225                 :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IWEBBROWSERFINDINFRAMES_IID)
     226                 : 
     227                 :   /* attribute nsIDOMWindow currentSearchFrame; */
     228                 :   NS_SCRIPTABLE NS_IMETHOD GetCurrentSearchFrame(nsIDOMWindow * *aCurrentSearchFrame) = 0;
     229                 :   NS_SCRIPTABLE NS_IMETHOD SetCurrentSearchFrame(nsIDOMWindow *aCurrentSearchFrame) = 0;
     230                 : 
     231                 :   /* attribute nsIDOMWindow rootSearchFrame; */
     232                 :   NS_SCRIPTABLE NS_IMETHOD GetRootSearchFrame(nsIDOMWindow * *aRootSearchFrame) = 0;
     233                 :   NS_SCRIPTABLE NS_IMETHOD SetRootSearchFrame(nsIDOMWindow *aRootSearchFrame) = 0;
     234                 : 
     235                 :   /* attribute boolean searchSubframes; */
     236                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchSubframes(bool *aSearchSubframes) = 0;
     237                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchSubframes(bool aSearchSubframes) = 0;
     238                 : 
     239                 :   /* attribute boolean searchParentFrames; */
     240                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchParentFrames(bool *aSearchParentFrames) = 0;
     241                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchParentFrames(bool aSearchParentFrames) = 0;
     242                 : 
     243                 : };
     244                 : 
     245                 :   NS_DEFINE_STATIC_IID_ACCESSOR(nsIWebBrowserFindInFrames, NS_IWEBBROWSERFINDINFRAMES_IID)
     246                 : 
     247                 : /* Use this macro when declaring classes that implement this interface. */
     248                 : #define NS_DECL_NSIWEBBROWSERFINDINFRAMES \
     249                 :   NS_SCRIPTABLE NS_IMETHOD GetCurrentSearchFrame(nsIDOMWindow * *aCurrentSearchFrame); \
     250                 :   NS_SCRIPTABLE NS_IMETHOD SetCurrentSearchFrame(nsIDOMWindow *aCurrentSearchFrame); \
     251                 :   NS_SCRIPTABLE NS_IMETHOD GetRootSearchFrame(nsIDOMWindow * *aRootSearchFrame); \
     252                 :   NS_SCRIPTABLE NS_IMETHOD SetRootSearchFrame(nsIDOMWindow *aRootSearchFrame); \
     253                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchSubframes(bool *aSearchSubframes); \
     254                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchSubframes(bool aSearchSubframes); \
     255                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchParentFrames(bool *aSearchParentFrames); \
     256                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchParentFrames(bool aSearchParentFrames); 
     257                 : 
     258                 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
     259                 : #define NS_FORWARD_NSIWEBBROWSERFINDINFRAMES(_to) \
     260                 :   NS_SCRIPTABLE NS_IMETHOD GetCurrentSearchFrame(nsIDOMWindow * *aCurrentSearchFrame) { return _to GetCurrentSearchFrame(aCurrentSearchFrame); } \
     261                 :   NS_SCRIPTABLE NS_IMETHOD SetCurrentSearchFrame(nsIDOMWindow *aCurrentSearchFrame) { return _to SetCurrentSearchFrame(aCurrentSearchFrame); } \
     262                 :   NS_SCRIPTABLE NS_IMETHOD GetRootSearchFrame(nsIDOMWindow * *aRootSearchFrame) { return _to GetRootSearchFrame(aRootSearchFrame); } \
     263                 :   NS_SCRIPTABLE NS_IMETHOD SetRootSearchFrame(nsIDOMWindow *aRootSearchFrame) { return _to SetRootSearchFrame(aRootSearchFrame); } \
     264                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchSubframes(bool *aSearchSubframes) { return _to GetSearchSubframes(aSearchSubframes); } \
     265                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchSubframes(bool aSearchSubframes) { return _to SetSearchSubframes(aSearchSubframes); } \
     266                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchParentFrames(bool *aSearchParentFrames) { return _to GetSearchParentFrames(aSearchParentFrames); } \
     267                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchParentFrames(bool aSearchParentFrames) { return _to SetSearchParentFrames(aSearchParentFrames); } 
     268                 : 
     269                 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
     270                 : #define NS_FORWARD_SAFE_NSIWEBBROWSERFINDINFRAMES(_to) \
     271                 :   NS_SCRIPTABLE NS_IMETHOD GetCurrentSearchFrame(nsIDOMWindow * *aCurrentSearchFrame) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCurrentSearchFrame(aCurrentSearchFrame); } \
     272                 :   NS_SCRIPTABLE NS_IMETHOD SetCurrentSearchFrame(nsIDOMWindow *aCurrentSearchFrame) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCurrentSearchFrame(aCurrentSearchFrame); } \
     273                 :   NS_SCRIPTABLE NS_IMETHOD GetRootSearchFrame(nsIDOMWindow * *aRootSearchFrame) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRootSearchFrame(aRootSearchFrame); } \
     274                 :   NS_SCRIPTABLE NS_IMETHOD SetRootSearchFrame(nsIDOMWindow *aRootSearchFrame) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRootSearchFrame(aRootSearchFrame); } \
     275                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchSubframes(bool *aSearchSubframes) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSearchSubframes(aSearchSubframes); } \
     276                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchSubframes(bool aSearchSubframes) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSearchSubframes(aSearchSubframes); } \
     277                 :   NS_SCRIPTABLE NS_IMETHOD GetSearchParentFrames(bool *aSearchParentFrames) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSearchParentFrames(aSearchParentFrames); } \
     278                 :   NS_SCRIPTABLE NS_IMETHOD SetSearchParentFrames(bool aSearchParentFrames) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSearchParentFrames(aSearchParentFrames); } 
     279                 : 
     280                 : #if 0
     281                 : /* Use the code below as a template for the implementation class for this interface. */
     282                 : 
     283                 : /* Header file */
     284                 : class nsWebBrowserFindInFrames : public nsIWebBrowserFindInFrames
     285                 : {
     286                 : public:
     287                 :   NS_DECL_ISUPPORTS
     288                 :   NS_DECL_NSIWEBBROWSERFINDINFRAMES
     289                 : 
     290                 :   nsWebBrowserFindInFrames();
     291                 : 
     292                 : private:
     293                 :   ~nsWebBrowserFindInFrames();
     294                 : 
     295                 : protected:
     296                 :   /* additional members */
     297                 : };
     298                 : 
     299                 : /* Implementation file */
     300                 : NS_IMPL_ISUPPORTS1(nsWebBrowserFindInFrames, nsIWebBrowserFindInFrames)
     301                 : 
     302                 : nsWebBrowserFindInFrames::nsWebBrowserFindInFrames()
     303                 : {
     304                 :   /* member initializers and constructor code */
     305                 : }
     306                 : 
     307                 : nsWebBrowserFindInFrames::~nsWebBrowserFindInFrames()
     308                 : {
     309                 :   /* destructor code */
     310                 : }
     311                 : 
     312                 : /* attribute nsIDOMWindow currentSearchFrame; */
     313                 : NS_IMETHODIMP nsWebBrowserFindInFrames::GetCurrentSearchFrame(nsIDOMWindow * *aCurrentSearchFrame)
     314                 : {
     315                 :     return NS_ERROR_NOT_IMPLEMENTED;
     316                 : }
     317                 : NS_IMETHODIMP nsWebBrowserFindInFrames::SetCurrentSearchFrame(nsIDOMWindow *aCurrentSearchFrame)
     318                 : {
     319                 :     return NS_ERROR_NOT_IMPLEMENTED;
     320                 : }
     321                 : 
     322                 : /* attribute nsIDOMWindow rootSearchFrame; */
     323                 : NS_IMETHODIMP nsWebBrowserFindInFrames::GetRootSearchFrame(nsIDOMWindow * *aRootSearchFrame)
     324                 : {
     325                 :     return NS_ERROR_NOT_IMPLEMENTED;
     326                 : }
     327                 : NS_IMETHODIMP nsWebBrowserFindInFrames::SetRootSearchFrame(nsIDOMWindow *aRootSearchFrame)
     328                 : {
     329                 :     return NS_ERROR_NOT_IMPLEMENTED;
     330                 : }
     331                 : 
     332                 : /* attribute boolean searchSubframes; */
     333                 : NS_IMETHODIMP nsWebBrowserFindInFrames::GetSearchSubframes(bool *aSearchSubframes)
     334                 : {
     335                 :     return NS_ERROR_NOT_IMPLEMENTED;
     336                 : }
     337                 : NS_IMETHODIMP nsWebBrowserFindInFrames::SetSearchSubframes(bool aSearchSubframes)
     338                 : {
     339                 :     return NS_ERROR_NOT_IMPLEMENTED;
     340                 : }
     341                 : 
     342                 : /* attribute boolean searchParentFrames; */
     343                 : NS_IMETHODIMP nsWebBrowserFindInFrames::GetSearchParentFrames(bool *aSearchParentFrames)
     344                 : {
     345                 :     return NS_ERROR_NOT_IMPLEMENTED;
     346                 : }
     347                 : NS_IMETHODIMP nsWebBrowserFindInFrames::SetSearchParentFrames(bool aSearchParentFrames)
     348                 : {
     349                 :     return NS_ERROR_NOT_IMPLEMENTED;
     350                 : }
     351                 : 
     352                 : /* End of implementation class template. */
     353                 : #endif
     354                 : 
     355                 : 
     356                 : #endif /* __gen_nsIWebBrowserFind_h__ */

Generated by: LCOV version 1.7