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