Updates following web-engine devel header location change
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / web-view / web-back-forward-list.cpp
1 /*
2  * Copyright (c) 2022 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.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/adaptor-framework/web-engine/web-engine-back-forward-list.h>
23
24 namespace Dali
25 {
26 namespace Toolkit
27 {
28 WebBackForwardList::WebBackForwardList(Dali::WebEngineBackForwardList& list)
29 : mWebEngineBackForwardList(list)
30 {
31 }
32
33 WebBackForwardList::~WebBackForwardList()
34 {
35 }
36
37 std::unique_ptr<Dali::WebEngineBackForwardListItem> WebBackForwardList::GetCurrentItem()
38 {
39   return mWebEngineBackForwardList.GetCurrentItem();
40 }
41
42 std::unique_ptr<Dali::WebEngineBackForwardListItem> WebBackForwardList::GetPreviousItem()
43 {
44   return mWebEngineBackForwardList.GetPreviousItem();
45 }
46
47 std::unique_ptr<Dali::WebEngineBackForwardListItem> WebBackForwardList::GetNextItem()
48 {
49   return mWebEngineBackForwardList.GetNextItem();
50 }
51
52 std::unique_ptr<Dali::WebEngineBackForwardListItem> WebBackForwardList::GetItemAtIndex(uint32_t index)
53 {
54   return mWebEngineBackForwardList.GetItemAtIndex(index);
55 }
56
57 uint32_t WebBackForwardList::GetItemCount() const
58 {
59   return mWebEngineBackForwardList.GetItemCount();
60 }
61
62 std::vector<std::unique_ptr<Dali::WebEngineBackForwardListItem>> WebBackForwardList::GetBackwardItems(int limit)
63 {
64   return mWebEngineBackForwardList.GetBackwardItems(limit);
65 }
66
67 std::vector<std::unique_ptr<Dali::WebEngineBackForwardListItem>> WebBackForwardList::GetForwardItems(int limit)
68 {
69   return mWebEngineBackForwardList.GetForwardItems(limit);
70 }
71
72 } // namespace Toolkit
73
74 } // namespace Dali