equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2003 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 the License "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: Handling of general url loading |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef URLLOADERI_H |
|
21 #define URLLOADERI_H |
|
22 |
|
23 // INCLUDES |
|
24 #include "urlloader_urlloaderint.h" |
|
25 #include "httploader_mlinkresolvercallbacks.h" |
|
26 #include "BrsrStatusCodes.h" |
|
27 #include "BrCtlDefs.h" |
|
28 |
|
29 #ifdef __cplusplus |
|
30 extern "C" { |
|
31 #endif |
|
32 |
|
33 // CONSTANTS |
|
34 |
|
35 // MACROS |
|
36 |
|
37 // DATA TYPES |
|
38 |
|
39 // FUNCTION PROTOTYPES |
|
40 |
|
41 // FORWARD DECLARATIONS |
|
42 |
|
43 // CLASS DECLARATION |
|
44 |
|
45 // BrowserAppUi Interface |
|
46 class MBrCtlSpecialLoadObserver; |
|
47 //webkit Interface |
|
48 class MWmlInterface; |
|
49 |
|
50 /** |
|
51 * Initialize the loaders. |
|
52 * aHttpCallbacks A callback structure for dialogs |
|
53 */ |
|
54 void UrlLoader_InitializeL(MBrCtlSpecialLoadObserver* aSpecialLoadObserver, |
|
55 MHttpLoader_LinkResolverCallbacks* aLinkCallbacks, MWmlInterface* aWKWmlInterface); |
|
56 |
|
57 /** |
|
58 * Initialize the system. |
|
59 */ |
|
60 TBrowserStatusCode NW_Initialize_Loadercli(); |
|
61 |
|
62 |
|
63 #ifdef __cplusplus |
|
64 } /* extern "C" */ |
|
65 #endif |
|
66 |
|
67 #endif // URLLOADERI_H |
|
68 |
|
69 // End of File |