1 : /* vim: set shiftwidth=4 tabstop=8 autoindent cindent expandtab: */
2 : /* ***** BEGIN LICENSE BLOCK *****
3 : * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 : *
5 : * The contents of this file are subject to the Mozilla Public License Version
6 : * 1.1 (the "License"); you may not use this file except in compliance with
7 : * the License. You may obtain a copy of the License at
8 : * http://www.mozilla.org/MPL/
9 : *
10 : * Software distributed under the License is distributed on an "AS IS" basis,
11 : * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 : * for the specific language governing rights and limitations under the
13 : * License.
14 : *
15 : * The Original Code is nsStubImageDecoderObserver.
16 : *
17 : * The Initial Developer of the Original Code is the Mozilla Foundation.
18 : * Portions created by the Initial Developer are Copyright (C) 2006
19 : * the Initial Developer. All Rights Reserved.
20 : *
21 : * Contributor(s):
22 : * L. David Baron <dbaron@dbaron.org>, Mozilla Corporation (original author)
23 : *
24 : * Alternatively, the contents of this file may be used under the terms of
25 : * either the GNU General Public License Version 2 or later (the "GPL"), or
26 : * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 : * in which case the provisions of the GPL or the LGPL are applicable instead
28 : * of those above. If you wish to allow use of your version of this file only
29 : * under the terms of either the GPL or the LGPL, and not to allow others to
30 : * use your version of this file under the terms of the MPL, indicate your
31 : * decision by deleting the provisions above and replace them with the notice
32 : * and other provisions required by the GPL or the LGPL. If you do not delete
33 : * the provisions above, a recipient may use your version of this file under
34 : * the terms of any one of the MPL, the GPL or the LGPL.
35 : *
36 : * ***** END LICENSE BLOCK ***** */
37 :
38 : #include "nsStubImageDecoderObserver.h"
39 :
40 : NS_IMETHODIMP
41 0 : nsStubImageDecoderObserver::OnStartRequest(imgIRequest *aRequest)
42 : {
43 0 : return NS_OK;
44 : }
45 :
46 : NS_IMETHODIMP
47 0 : nsStubImageDecoderObserver::OnStartDecode(imgIRequest *aRequest)
48 : {
49 0 : return NS_OK;
50 : }
51 :
52 : NS_IMETHODIMP
53 0 : nsStubImageDecoderObserver::OnStartContainer(imgIRequest *aRequest,
54 : imgIContainer *aContainer)
55 : {
56 0 : return NS_OK;
57 : }
58 :
59 : NS_IMETHODIMP
60 0 : nsStubImageDecoderObserver::OnStartFrame(imgIRequest *aRequest,
61 : PRUint32 aFrame)
62 : {
63 0 : return NS_OK;
64 : }
65 :
66 : NS_IMETHODIMP
67 0 : nsStubImageDecoderObserver::OnDataAvailable(imgIRequest *aRequest,
68 : bool aCurrentFrame,
69 : const nsIntRect * aRect)
70 : {
71 0 : return NS_OK;
72 : }
73 :
74 : NS_IMETHODIMP
75 0 : nsStubImageDecoderObserver::OnStopFrame(imgIRequest *aRequest,
76 : PRUint32 aFrame)
77 : {
78 0 : return NS_OK;
79 : }
80 :
81 : NS_IMETHODIMP
82 0 : nsStubImageDecoderObserver::OnStopContainer(imgIRequest *aRequest,
83 : imgIContainer *aContainer)
84 : {
85 0 : return NS_OK;
86 : }
87 :
88 : NS_IMETHODIMP
89 0 : nsStubImageDecoderObserver::OnStopDecode(imgIRequest *aRequest,
90 : nsresult status,
91 : const PRUnichar *statusArg)
92 : {
93 0 : return NS_OK;
94 : }
95 :
96 : NS_IMETHODIMP
97 0 : nsStubImageDecoderObserver::OnStopRequest(imgIRequest *aRequest,
98 : bool aIsLastPart)
99 : {
100 0 : return NS_OK;
101 : }
102 :
103 : NS_IMETHODIMP
104 0 : nsStubImageDecoderObserver::OnDiscard(imgIRequest *aRequest)
105 : {
106 0 : return NS_OK;
107 : }
108 :
109 : NS_IMETHODIMP
110 0 : nsStubImageDecoderObserver::OnImageIsAnimated(imgIRequest *aRequest)
111 : {
112 0 : return NS_OK;
113 : }
114 :
115 : NS_IMETHODIMP
116 0 : nsStubImageDecoderObserver::FrameChanged(imgIRequest* aRequest,
117 : imgIContainer *aContainer,
118 : const nsIntRect *aDirtyRect)
119 : {
120 0 : return NS_OK;
121 : }
|