Implement some new ewk apis in web view.
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / web-view / web-back-forward-list-item.cpp
1 /*
2  * Copyright (c) 2020 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 <dali-toolkit/devel-api/controls/web-view/web-back-forward-list-item.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/adaptor-framework/web-engine-back-forward-list-item.h>
23
24 namespace Dali
25 {
26 namespace Toolkit
27 {
28
29 const std::string EMPTY_STRING;
30
31 WebBackForwardListItem::WebBackForwardListItem( const Dali::WebEngineBackForwardListItem* item )
32 : mWebEngineBackForwardListItem( item )
33 {
34 }
35
36 WebBackForwardListItem::~WebBackForwardListItem()
37 {
38 }
39
40 std::string WebBackForwardListItem::GetUrl() const
41 {
42   return mWebEngineBackForwardListItem ? mWebEngineBackForwardListItem->GetUrl() : EMPTY_STRING;
43 }
44
45 std::string WebBackForwardListItem::GetTitle() const
46 {
47   return mWebEngineBackForwardListItem ? mWebEngineBackForwardListItem->GetTitle() : EMPTY_STRING;
48 }
49
50 std::string WebBackForwardListItem::GetOriginalUrl() const
51 {
52   return mWebEngineBackForwardListItem ? mWebEngineBackForwardListItem->GetOriginalUrl() : EMPTY_STRING;
53 }
54
55 } // namespace Toolkit
56
57 } // namespace Dali