1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/embedding/browser/webBrowser/nsIEmbeddingSiteWindow2.idl
3 : */
4 :
5 : #ifndef __gen_nsIEmbeddingSiteWindow2_h__
6 : #define __gen_nsIEmbeddingSiteWindow2_h__
7 :
8 :
9 : #ifndef __gen_nsIEmbeddingSiteWindow_h__
10 : #include "nsIEmbeddingSiteWindow.h"
11 : #endif
12 :
13 : /* For IDL files that don't want to include root IDL files. */
14 : #ifndef NS_NO_VTABLE
15 : #define NS_NO_VTABLE
16 : #endif
17 :
18 : /* starting interface: nsIEmbeddingSiteWindow2 */
19 : #define NS_IEMBEDDINGSITEWINDOW2_IID_STR "e932bf55-0a64-4beb-923a-1f32d3661044"
20 :
21 : #define NS_IEMBEDDINGSITEWINDOW2_IID \
22 : {0xe932bf55, 0x0a64, 0x4beb, \
23 : { 0x92, 0x3a, 0x1f, 0x32, 0xd3, 0x66, 0x10, 0x44 }}
24 :
25 0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIEmbeddingSiteWindow2 : public nsIEmbeddingSiteWindow {
26 : public:
27 :
28 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_IEMBEDDINGSITEWINDOW2_IID)
29 :
30 : /* void blur (); */
31 : NS_SCRIPTABLE NS_IMETHOD Blur(void) = 0;
32 :
33 : };
34 :
35 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIEmbeddingSiteWindow2, NS_IEMBEDDINGSITEWINDOW2_IID)
36 :
37 : /* Use this macro when declaring classes that implement this interface. */
38 : #define NS_DECL_NSIEMBEDDINGSITEWINDOW2 \
39 : NS_SCRIPTABLE NS_IMETHOD Blur(void);
40 :
41 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
42 : #define NS_FORWARD_NSIEMBEDDINGSITEWINDOW2(_to) \
43 : NS_SCRIPTABLE NS_IMETHOD Blur(void) { return _to Blur(); }
44 :
45 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
46 : #define NS_FORWARD_SAFE_NSIEMBEDDINGSITEWINDOW2(_to) \
47 : NS_SCRIPTABLE NS_IMETHOD Blur(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Blur(); }
48 :
49 : #if 0
50 : /* Use the code below as a template for the implementation class for this interface. */
51 :
52 : /* Header file */
53 : class nsEmbeddingSiteWindow2 : public nsIEmbeddingSiteWindow2
54 : {
55 : public:
56 : NS_DECL_ISUPPORTS
57 : NS_DECL_NSIEMBEDDINGSITEWINDOW2
58 :
59 : nsEmbeddingSiteWindow2();
60 :
61 : private:
62 : ~nsEmbeddingSiteWindow2();
63 :
64 : protected:
65 : /* additional members */
66 : };
67 :
68 : /* Implementation file */
69 : NS_IMPL_ISUPPORTS1(nsEmbeddingSiteWindow2, nsIEmbeddingSiteWindow2)
70 :
71 : nsEmbeddingSiteWindow2::nsEmbeddingSiteWindow2()
72 : {
73 : /* member initializers and constructor code */
74 : }
75 :
76 : nsEmbeddingSiteWindow2::~nsEmbeddingSiteWindow2()
77 : {
78 : /* destructor code */
79 : }
80 :
81 : /* void blur (); */
82 : NS_IMETHODIMP nsEmbeddingSiteWindow2::Blur()
83 : {
84 : return NS_ERROR_NOT_IMPLEMENTED;
85 : }
86 :
87 : /* End of implementation class template. */
88 : #endif
89 :
90 :
91 : #endif /* __gen_nsIEmbeddingSiteWindow2_h__ */
|