Merge "Add SelectionCleared signal" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / web-view / web-view-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_WEB_VIEW_H
2 #define DALI_TOOLKIT_INTERNAL_WEB_VIEW_H
3
4 /*
5  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/actors/actor-devel.h>
23 #include <dali/devel-api/adaptor-framework/web-engine.h>
24 #include <dali/public-api/images/image-operations.h>
25 #include <dali/public-api/object/property-notification.h>
26 #include <memory>
27
28 // INTERNAL INCLUDES
29 #include <dali-toolkit/devel-api/controls/web-view/web-view.h>
30 #include <dali-toolkit/devel-api/visual-factory/visual-base.h>
31 #include <dali-toolkit/public-api/controls/control-impl.h>
32 #include <dali-toolkit/public-api/controls/image-view/image-view.h>
33
34 namespace Dali
35 {
36 namespace Toolkit
37 {
38 class KeyEvent;
39 class TouchEvent;
40 class WebBackForwardList;
41 class WebContext;
42 class WebCookieManager;
43 class WebSettings;
44 class WebView;
45
46 namespace Internal
47 {
48 class WebView : public Control
49 {
50 protected:
51   WebView();
52
53   WebView(const std::string& locale, const std::string& timezoneId);
54
55   WebView(uint32_t argc, char** argv);
56
57   virtual ~WebView();
58
59 public:
60   /**
61    * @copydoc Dali::Toolkit::WebView::New()
62    */
63   static Toolkit::WebView New();
64
65   /**
66    * @copydoc Dali::Toolkit::WebView::New( const std::string&, const std::string& )
67    */
68   static Toolkit::WebView New(const std::string& locale, const std::string& timezoneId);
69
70   /**
71    * @copydoc Dali::Toolkit::WebView::New( uint32_t, char** )
72    */
73   static Toolkit::WebView New(uint32_t argc, char** argv);
74
75   /**
76    * @copydoc Dali::Toolkit::WebView::GetSettings()
77    */
78   Dali::Toolkit::WebSettings* GetSettings() const;
79
80   /**
81    * @copydoc Dali::Toolkit::WebView::GetContext()
82    */
83   Dali::Toolkit::WebContext* GetContext() const;
84
85   /**
86    * @copydoc Dali::Toolkit::WebView::GetCookieManager()
87    */
88   Dali::Toolkit::WebCookieManager* GetCookieManager() const;
89
90   /**
91    * @copydoc Dali::Toolkit::WebView::GetBackForwardList()
92    */
93   Dali::Toolkit::WebBackForwardList* GetBackForwardList() const;
94
95   /**
96    * @copydoc Dali::Toolkit::WebView::GetFavicon()
97    */
98   Dali::Toolkit::ImageView GetFavicon() const;
99
100   /**
101    * @copydoc Dali::Toolkit::WebView::LoadUrl()
102    */
103   void LoadUrl(const std::string& url);
104
105   /**
106    * @copydoc Dali::WebEngine::LoadHTMLString()
107    */
108   void LoadHtmlString(const std::string& htmlString);
109
110   /**
111    * @copydoc Dali::WebEngine::LoadHtmlStringOverrideCurrentEntry()
112    */
113   bool LoadHtmlStringOverrideCurrentEntry(const std::string& html, const std::string& basicUri, const std::string& unreachableUrl);
114
115   /**
116    * @copydoc Dali::WebEngine::LoadContents()
117    */
118   bool LoadContents(const std::string& contents, uint32_t contentSize, const std::string& mimeType, const std::string& encoding, const std::string& baseUri);
119
120   /**
121    * @copydoc Dali::Toolkit::WebView::Reload()
122    */
123   void Reload();
124
125   /**
126    * @copydoc Dali::WebEngine::ReloadWithoutCache()
127    */
128   bool ReloadWithoutCache();
129
130   /**
131    * @copydoc Dali::Toolkit::WebView::StopLoading()
132    */
133   void StopLoading();
134
135   /**
136    * @copydoc Dali::Toolkit::WebView::StopLoading()
137    */
138   void Suspend();
139
140   /**
141    * @copydoc Dali::Toolkit::WebView::Resume()
142    */
143   void Resume();
144
145   /**
146    * @copydoc Dali::WebEngine::SuspendNetworkLoading()
147    */
148   void SuspendNetworkLoading();
149
150   /**
151    * @copydoc Dali::WebEngine::ResumeNetworkLoading()
152    */
153   void ResumeNetworkLoading();
154
155   /**
156    * @copydoc Dali::WebEngine::AddCustomHeader()
157    */
158   bool AddCustomHeader(const std::string& name, const std::string& value);
159
160   /**
161    * @copydoc Dali::WebEngine::RemoveCustomHeader()
162    */
163   bool RemoveCustomHeader(const std::string& name);
164
165   /**
166    * @copydoc Dali::WebEngine::StartInspectorServer()
167    */
168   uint32_t StartInspectorServer(uint32_t port);
169
170   /**
171    * @copydoc Dali::WebEngine::StopInspectorServer()
172    */
173   bool StopInspectorServer();
174
175   /**
176    * @copydoc Dali::Toolkit::WebView::ScrollBy()
177    */
178   void ScrollBy(int32_t deltaX, int32_t deltaY);
179
180   /**
181    * @copydoc Dali::WebEngine::ScrollEdgeBy()
182    */
183   bool ScrollEdgeBy(int32_t deltaX, int32_t deltaY);
184
185   /**
186    * @copydoc Dali::Toolkit::WebView::CanGoForward()
187    */
188   bool CanGoForward();
189
190   /**
191    * @copydoc Dali::Toolkit::WebView::GoForward()
192    */
193   void GoForward();
194
195   /**
196    * @copydoc Dali::Toolkit::WebView::CanGoBack()
197    */
198   bool CanGoBack();
199
200   /**
201    * @copydoc Dali::Toolkit::WebView::GoBack()
202    */
203   void GoBack();
204
205   /**
206    * @copydoc Dali::Toolkit::WebView::EvaluateJavaScript()
207    */
208   void EvaluateJavaScript(const std::string& script, Dali::WebEnginePlugin::JavaScriptMessageHandlerCallback resultHandler);
209
210   /**
211    * @copydoc Dali::Toolkit::WebView::AddJavaScriptMessageHandler()
212    */
213   void AddJavaScriptMessageHandler(const std::string& exposedObjectName, Dali::WebEnginePlugin::JavaScriptMessageHandlerCallback handler);
214
215   /**
216    * @copydoc Dali::Toolkit::WebView::RegisterJavaScriptAlertCallback()
217    */
218   void RegisterJavaScriptAlertCallback(Dali::WebEnginePlugin::JavaScriptAlertCallback callback);
219
220   /**
221    * @copydoc Dali::Toolkit::WebView::JavaScriptAlertReply()
222    */
223   void JavaScriptAlertReply();
224
225   /**
226    * @copydoc Dali::Toolkit::WebView::RegisterJavaScriptConfirmCallback()
227    */
228   void RegisterJavaScriptConfirmCallback(Dali::WebEnginePlugin::JavaScriptConfirmCallback callback);
229
230   /**
231    * @copydoc Dali::Toolkit::WebView::JavaScriptConfirmReply()
232    */
233   void JavaScriptConfirmReply(bool confirmed);
234
235   /**
236    * @copydoc Dali::Toolkit::WebView::RegisterJavaScriptPromptCallback()
237    */
238   void RegisterJavaScriptPromptCallback(Dali::WebEnginePlugin::JavaScriptPromptCallback callback);
239
240   /**
241    * @copydoc Dali::Toolkit::WebView::JavaScriptPromptReply()
242    */
243   void JavaScriptPromptReply(const std::string& result);
244
245   /**
246    * @copydoc Dali::Toolkit::WebView::CreateHitTest()
247    */
248   std::unique_ptr<Dali::WebEngineHitTest> CreateHitTest(int32_t x, int32_t y, Dali::WebEngineHitTest::HitTestMode mode);
249
250   /**
251    * @copydoc Dali::Toolkit::WebView::CreateHitTestAsynchronously()
252    */
253   bool CreateHitTestAsynchronously(int32_t x, int32_t y, Dali::WebEngineHitTest::HitTestMode mode, Dali::WebEnginePlugin::WebEngineHitTestCreatedCallback callback);
254
255   /**
256    * @copydoc Dali::Toolkit::WebView::ClearHistory()
257    */
258   void ClearHistory();
259
260   /**
261    * @copydoc Dali::Toolkit::WebView::ClearAllTilesResources()
262    */
263   void ClearAllTilesResources();
264
265   /**
266    * @copydoc Dali::Toolkit::WebView::SetScaleFactor()
267    */
268   void SetScaleFactor(float scaleFactor, Dali::Vector2 point);
269
270   /**
271    * @copydoc Dali::Toolkit::WebView::GetScaleFactor()
272    */
273   float GetScaleFactor() const;
274
275   /**
276    * @copydoc Dali::Toolkit::WebView::ActivateAccessibility()
277    */
278   void ActivateAccessibility(bool activated);
279
280   /**
281    * @copydoc Dali::Toolkit::WebView::HighlightText()
282    */
283   bool HighlightText(const std::string& text, Dali::WebEnginePlugin::FindOption options, uint32_t maxMatchCount);
284
285   /**
286    * @copydoc Dali::Toolkit::WebView::AddDynamicCertificatePath()
287    */
288   void AddDynamicCertificatePath(const std::string& host, const std::string& certPath);
289
290   /**
291    * @copydoc Dali::Toolkit::WebView::GetScreenshot()
292    */
293   Dali::Toolkit::ImageView GetScreenshot(Dali::Rect<int32_t> viewArea, float scaleFactor);
294
295   /**
296    * @copydoc Dali::Toolkit::WebView::GetScreenshotAsynchronously()
297    */
298   bool GetScreenshotAsynchronously(Dali::Rect<int32_t> viewArea, float scaleFactor, Dali::Toolkit::WebView::WebViewScreenshotCapturedCallback callback);
299
300   /**
301    * @copydoc Dali::Toolkit::WebView::CheckVideoPlayingAsynchronously()
302    */
303   bool CheckVideoPlayingAsynchronously(Dali::WebEnginePlugin::VideoPlayingCallback callback);
304
305   /**
306    * @copydoc Dali::Toolkit::WebView::RegisterGeolocationPermissionCallback()
307    */
308   void RegisterGeolocationPermissionCallback(Dali::WebEnginePlugin::GeolocationPermissionCallback callback);
309
310   /**
311    * @copydoc Dali::Toolkit::WebView::SetTtsFocus()
312    */
313   void SetTtsFocus(bool focused);
314
315   /**
316    * @copydoc Dali::Toolkit::WebView::RegisterPageLoadStartedCallback()
317    */
318   void RegisterPageLoadStartedCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback);
319
320   /**
321    * @copydoc Dali::Toolkit::WebView::RegisterPageLoadInProgressCallback()
322    */
323   void RegisterPageLoadInProgressCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback);
324
325   /**
326    * @copydoc Dali::Toolkit::WebView::RegisterPageLoadFinishedCallback()
327    */
328   void RegisterPageLoadFinishedCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback);
329
330   /**
331    * @copydoc Dali::Toolkit::WebView::RegisterPageLoadErrorCallback()
332    */
333   void RegisterPageLoadErrorCallback(Dali::WebEnginePlugin::WebEnginePageLoadErrorCallback callback);
334
335   /**
336    * @copydoc Dali::Toolkit::WebView::RegisterScrollEdgeReachedCallback()
337    */
338   void RegisterScrollEdgeReachedCallback(Dali::WebEnginePlugin::WebEngineScrollEdgeReachedCallback callback);
339
340   /**
341    * @copydoc Dali::Toolkit::WebView::RegisterUrlChangedCallback()
342    */
343   void RegisterUrlChangedCallback(Dali::WebEnginePlugin::WebEngineUrlChangedCallback callback);
344
345   /**
346    * @copydoc Dali::Toolkit::WebView::RegisterFormRepostDecidedCallback()
347    */
348   void RegisterFormRepostDecidedCallback(Dali::WebEnginePlugin::WebEngineFormRepostDecidedCallback callback);
349
350   /**
351    * @copydoc Dali::Toolkit::WebView::RegisterFrameRenderedCallback()
352    */
353   void RegisterFrameRenderedCallback(Dali::WebEnginePlugin::WebEngineFrameRenderedCallback callback);
354
355   /**
356    * @copydoc Dali::Toolkit::WebView::RegisterConsoleMessageReceivedCallback()
357    */
358   void RegisterConsoleMessageReceivedCallback(Dali::WebEnginePlugin::WebEngineConsoleMessageReceivedCallback callback);
359
360   /**
361    * @copydoc Dali::Toolkit::WebView::RegisterResponsePolicyDecidedCallback()
362    */
363   void RegisterResponsePolicyDecidedCallback(Dali::WebEnginePlugin::WebEngineResponsePolicyDecidedCallback callback);
364
365   /**
366    * @copydoc Dali::Toolkit::WebView::RegisterCertificateConfirmedCallback()
367    */
368   void RegisterCertificateConfirmedCallback(Dali::WebEnginePlugin::WebEngineCertificateCallback callback);
369
370   /**
371    * @copydoc Dali::Toolkit::WebView::RegisterSslCertificateChangedCallback()
372    */
373   void RegisterSslCertificateChangedCallback(Dali::WebEnginePlugin::WebEngineCertificateCallback callback);
374
375   /**
376    * @copydoc Dali::Toolkit::WebView::RegisterHttpAuthHandlerCallback()
377    */
378   void RegisterHttpAuthHandlerCallback(Dali::WebEnginePlugin::WebEngineHttpAuthHandlerCallback callback);
379
380   /**
381    * @copydoc Dali::Toolkit::WebView::RegisterContextMenuShownCallback()
382    */
383   void RegisterContextMenuShownCallback(Dali::WebEnginePlugin::WebEngineContextMenuShownCallback callback);
384
385   /**
386    * @copydoc Dali::Toolkit::WebView::RegisterContextMenuHiddenCallback()
387    */
388   void RegisterContextMenuHiddenCallback(Dali::WebEnginePlugin::WebEngineContextMenuHiddenCallback callback);
389
390   /**
391    * @copydoc Dali::Toolkit::WebView::GetPlainTextAsynchronously()
392    */
393   void GetPlainTextAsynchronously(Dali::WebEnginePlugin::PlainTextReceivedCallback callback);
394
395 public: // Properties
396   /**
397    * @brief Called when a property of an object of this type is set.
398    *
399    * @param[in] object The object whose property is set.
400    * @param[in] index The property index.
401    * @param[in] value The new property value.
402    */
403   static void SetProperty(Dali::BaseObject* object, Dali::Property::Index index, const Dali::Property::Value& value);
404
405   /**
406    * @brief Called to retrieve a property of an object of this type.
407    *
408    * @param[in] object The object whose property is to be retrieved.
409    * @param[in] index The property index.
410    * @return The current value of the property.
411    */
412   static Dali::Property::Value GetProperty(Dali::BaseObject* object, Dali::Property::Index propertyIndex);
413
414 private: // From Control
415   /**
416    * @copydoc Toolkit::Control::OnInitialize()
417    */
418   void OnInitialize() override;
419
420   /**
421    * @copydoc Toolkit::Control::GetNaturalSize
422    */
423   Vector3 GetNaturalSize() override;
424
425   /**
426    * @copydoc Toolkit::Control::OnKeyEvent()
427    */
428   bool OnKeyEvent(const Dali::KeyEvent& event) override;
429
430   /**
431    * @copydoc Toolkit::Control::OnKeyInputFocusGained()
432    */
433   void OnKeyInputFocusGained() override;
434
435   /**
436    * @copydoc Toolkit::Control::OnKeyInputFocusLost()
437    */
438   void OnKeyInputFocusLost() override;
439
440   /**
441    * @copydoc Toolkit::Control::OnSceneConnection()
442    */
443   void OnSceneConnection(int depth) override;
444
445 private:
446   // Undefined
447   WebView(const WebView& webView);
448
449   WebView& operator=(const WebView& webView);
450
451   /**
452    * @brief Set an absolute scroll of the given view.
453    * @param[in] x The coordinate x of scroll
454    * @param[in] y The coordinate y of scroll
455    */
456   void SetScrollPosition(int32_t x, int32_t y);
457
458   /**
459    * @brief Get the current scroll position of the given view.
460    * @param[out] x The coordinate x of scroll
461    * @param[out] y The coordinate y of scroll
462    */
463   Dali::Vector2 GetScrollPosition() const;
464
465   /**
466    * @brief Get the possible scroll size of the given view.
467    * @param[out] width The width of scroll size
468    * @param[out] height The height of scroll size
469    */
470   Dali::Vector2 GetScrollSize() const;
471
472   /**
473    * @brief Get the last known content's size.
474    * @param[out] width The width of content's size
475    * @param[out] height The height of content's size
476    */
477   Dali::Vector2 GetContentSize() const;
478
479   /**
480    * @brief Return the title of the Web.
481    *
482    * @return The title of web page
483    */
484   std::string GetTitle() const;
485
486   /**
487    * @brief Set the background color of web page.
488    * @param[in] color The value of background color.
489    */
490   void SetDocumentBackgroundColor(Dali::Vector4 color);
491
492   /**
493    * @brief Clear tiles when hidden.
494    *
495    * @param[in] cleared Whether tiles are cleared or not
496    */
497   void ClearTilesWhenHidden(bool cleared);
498
499   /**
500    * @brief Set multiplier of cover area of tile.
501    *
502    * @param[in] multiplier The multiplier of cover area
503    */
504   void SetTileCoverAreaMultiplier(float multiplier);
505
506   /**
507    * @brief Enable cursor by client.
508    * @param[in] enabled Whether cursor is enabled or not.
509    */
510   void EnableCursorByClient(bool enabled);
511
512   /**
513    * @brief Get the selected text.
514    * @return The selected text
515    */
516   std::string GetSelectedText() const;
517
518   /**
519    * @brief Get url of web page.
520    * @return The string of url
521    */
522   std::string GetUrl() const;
523
524   /**
525    * @brief Get user agent string.
526    * @return The string value of user agent
527    */
528   std::string GetUserAgent() const;
529
530   /**
531    * @brief Set user agent string.
532    * @param[in] userAgent The string value of user agent
533    */
534   void SetUserAgent(const std::string& userAgent);
535
536   /**
537    * @brief Set zoom factor of the current page.
538    * @param[in] zoomFactor a new factor to be set.
539    */
540   void SetPageZoomFactor(float zoomFactor);
541
542   /**
543    * @brief Query the current zoom factor of the page。
544    * @return The current page zoom factor.
545    */
546   float GetPageZoomFactor() const;
547
548   /**
549    * @brief Set the current text zoom level。.
550    * @param[in] zoomFactor a new factor to be set.
551    */
552   void SetTextZoomFactor(float zoomFactor);
553
554   /**
555    * @brief Get the current text zoom level.
556    * @return The current text zoom factor.
557    */
558   float GetTextZoomFactor() const;
559
560   /**
561    * @brief Get the current load progress of the page.
562    * @return The load progress of the page.
563    */
564   float GetLoadProgressPercentage() const;
565
566   /**
567    * @brief Request to set the current page's visibility.
568    * @param[in] visible Visible or not.
569    *
570    * @return true if succeeded, false otherwise
571    */
572   bool SetVisibility(bool visible);
573
574   /**
575    * @brief Update display area of web view.
576    * @param[in] source The soource triggers Notification.
577    */
578   void UpdateDisplayArea(Dali::PropertyNotification& source);
579
580   /**
581    * @brief Enable/Disable video hole for video playing.
582    * @param[in] enabled True if video hole is enabled, false otherwise.
583    */
584   void EnableVideoHole(bool enabled);
585
586   /**
587    * @brief Enable blend mode.
588    * @param[in] blendEnabled True if turn on blend mode, false otherwise.
589    */
590   void EnableBlendMode(bool blendEnabled);
591
592   /**
593    * @brief Enable/disable mouse events. The default is enabled.
594    *
595    * @param[in] enabled True if mouse events are enabled, false otherwise
596    */
597   void EnableMouseEvents(bool enabled);
598
599   /**
600    * @brief Enable/disable key events. The default is enabled.
601    *
602    * @param[in] enabled True if key events enabled, false otherwise
603    */
604   void EnableKeyEvents(bool enabled);
605
606   /**
607    * @brief Create image view by pixel data.
608    * @param[in] pixel Pixel data
609    * @return The new image view
610    */
611   Dali::Toolkit::ImageView CreateImageView(Dali::PixelData pixel) const;
612
613   /**
614    * @brief Signal occurs when the Web View has been touched.
615    * @param[in] actor The Actor Touched
616    * @param[in] touch The Touch Data.
617    * @return Whether to consume event or not.
618    */
619   bool OnTouchEvent(Actor actor, const Dali::TouchEvent& touch);
620
621   /**
622    * @brief Signal occurs when the Web View has been hovered.
623    * @param[in] actor The Actor Hovered
624    * @param[in] hover The Hover Data.
625    * @return Whether to consume event or not.
626    */
627   bool OnHoverEvent(Actor actor, const Dali::HoverEvent& hover);
628
629   /**
630    * @brief Signal occurs when the Web View receives wheel event.
631    * @param[in] actor The Actor that receives Wheel event.
632    * @param[in] wheel The Wheel Data.
633    * @return Whether to consume event or not.
634    */
635   bool OnWheelEvent(Actor actor, const Dali::WheelEvent& wheel);
636
637   /**
638    * @brief Callback function to be called when frame is rendered.
639    */
640   void OnFrameRendered();
641
642   /**
643    * @brief Callback function to be called when frame is rendered. This is to check initial buffer is ready.
644    */
645   void OnInitialFrameRendered();
646
647   /**
648    * @brief Callback function to be called when visibility is changed.
649    * @param[in] actor The actor, or child of actor, whose visibility has changed
650    * @param[in] isVisible Whether the actor is now visible or not
651    * @param[in] type, Whether the actor's visible property has changed or a parent's
652    */
653   void OnVisibilityChanged(Actor actor, bool isVisible, Dali::DevelActor::VisibilityChange::Type type);
654
655   /**
656    * @brief callback for screen shot captured.
657    * @param[in] pixel Pixel data of screen shot.
658    */
659   void OnScreenshotCaptured(Dali::PixelData pixel);
660
661 private:
662   Dali::Toolkit::Visual::Base mVisual;
663   Dali::Size                  mWebViewSize;
664   Dali::WebEngine             mWebEngine;
665
666   std::unique_ptr<Dali::Toolkit::WebContext>         mWebContext;
667   std::unique_ptr<Dali::Toolkit::WebCookieManager>   mWebCookieManager;
668   std::unique_ptr<Dali::Toolkit::WebSettings>        mWebSettings;
669   std::unique_ptr<Dali::Toolkit::WebBackForwardList> mWebBackForwardList;
670
671   Dali::PropertyNotification mPositionUpdateNotification;
672   Dali::PropertyNotification mSizeUpdateNotification;
673   Dali::PropertyNotification mScaleUpdateNotification;
674   Dali::Rect<int32_t>        mWebViewArea;
675   bool                       mVideoHoleEnabled;
676   bool                       mMouseEventsEnabled;
677   bool                       mKeyEventsEnabled;
678
679   Dali::Toolkit::WebView::WebViewScreenshotCapturedCallback mScreenshotCapturedCallback;
680   Dali::WebEnginePlugin::WebEngineFrameRenderedCallback     mFrameRenderedCallback;
681 };
682
683 } // namespace Internal
684
685 inline Toolkit::Internal::WebView& GetImpl(Toolkit::WebView& handle)
686 {
687   DALI_ASSERT_ALWAYS(handle);
688   Dali::RefObject& impl = handle.GetImplementation();
689   return static_cast<Toolkit::Internal::WebView&>(impl);
690 }
691
692 inline const Toolkit::Internal::WebView& GetImpl(const Toolkit::WebView& handle)
693 {
694   DALI_ASSERT_ALWAYS(handle);
695   const Dali::RefObject& impl = handle.GetImplementation();
696   return static_cast<const Toolkit::Internal::WebView&>(impl);
697 }
698
699 } // namespace Toolkit
700
701 } // namespace Dali
702
703 #endif // DALI_TOOLKIT_INTERNAL_WEB_VIEW_H