ab3e3201b3920603a9a95f3280aabbae149ca22f
[platform/core/uifw/dali-adaptor.git] / platform-abstractions / tizen / resource-loader / resource-bitmap-requester.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include "resource-bitmap-requester.h"
20
21 // EXTERNAL INCLUDES
22
23 // INTERNAL INCLUDES
24 #include "network/file-download.h"
25 #include "network/http-utils.h"
26
27 using namespace Dali::Integration;
28
29 namespace Dali
30 {
31 namespace TizenPlatform
32 {
33 namespace
34 {
35 enum ResourceScheme
36 {
37   FILE_SYSTEM_RESOURCE,
38   NETWORK_RESOURCE
39 };
40 }// unnamed namespace
41
42 ResourceBitmapRequester::ResourceBitmapRequester( ResourceLoader& resourceLoader )
43 : ResourceRequesterBase( resourceLoader )
44 {
45 }
46
47 ResourceBitmapRequester::~ResourceBitmapRequester()
48 {
49 }
50
51
52
53 } // TizenPlatform
54 } // Dali