6a87e6a02f8152e0cfbc1525de3a30a31d612274
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / efl_integration / public / ewk_web_application_icon_data.cc
1 // Copyright 2013 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ewk_web_application_icon_data.h"
6
7 #include "private/ewk_web_application_icon_data_private.h"
8
9 const char* ewk_web_application_icon_data_url_get(Ewk_Web_App_Icon_Data* data)
10 {
11   return (NULL == data || data->getUrl().empty()) ? NULL : data->getUrl().c_str();
12 }
13
14 const char* ewk_web_application_icon_data_size_get(Ewk_Web_App_Icon_Data* data)
15 {
16   return (NULL == data || data->getSize().empty()) ? NULL : data->getSize().c_str();
17 }