equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Header file CMiniBrowser class |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef MINI_BROWSER_OBSERVER_H |
|
21 #define MINI_BROWSER_OBSERVER_H |
|
22 |
|
23 // INCLUDES |
|
24 // None |
|
25 |
|
26 // CONSTANTS |
|
27 // None |
|
28 |
|
29 // MACROS |
|
30 // None |
|
31 |
|
32 // DATA TYPES |
|
33 // None |
|
34 |
|
35 // FUNCTION PROTOTYPES |
|
36 // None |
|
37 |
|
38 // FORWARD DECLARATIONS |
|
39 // None |
|
40 |
|
41 // CLASS DECLARATION |
|
42 |
|
43 /** |
|
44 * CMiniBrowser class |
|
45 * |
|
46 * @since 3.1? |
|
47 */ |
|
48 class MMiniBrowserObserver |
|
49 { |
|
50 public: |
|
51 /** |
|
52 Called after MiniBrowser has handled a request for an URL |
|
53 (a call to HttpGetL resulted a successful http request-response) |
|
54 */ |
|
55 virtual void MiniBrowserRequestDoneL() = 0; |
|
56 |
|
57 /** |
|
58 Called if RunL of CMiniBrowser leaves. |
|
59 @param aError The leave code. |
|
60 */ |
|
61 virtual void MiniBrowserErrorL( const TInt aError ) = 0; |
|
62 |
|
63 /** |
|
64 Called if a call to MiniBrowserRequestDoneL or MiniBrowserErrorL leaves |
|
65 @param aError The leave code |
|
66 */ |
|
67 virtual void MiniBrowserUnhandledLeave( const TInt aError ) = 0; |
|
68 }; |
|
69 |
|
70 #endif // MINI_BROWSER_OBSERVER_H |
|
71 |
|
72 // End of File |