Merge "Add CanvasView thread rasterization" 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::RegisterRequestInterceptorCallback()
357    */
358   void RegisterRequestInterceptorCallback(Dali::WebEnginePlugin::WebEngineRequestInterceptorCallback callback);
359
360   /**
361    * @copydoc Dali::Toolkit::WebView::RegisterConsoleMessageReceivedCallback()
362    */
363   void RegisterConsoleMessageReceivedCallback(Dali::WebEnginePlugin::WebEngineConsoleMessageReceivedCallback callback);
364
365   /**
366    * @copydoc Dali::Toolkit::WebView::RegisterResponsePolicyDecidedCallback()
367    */
368   void RegisterResponsePolicyDecidedCallback(Dali::WebEnginePlugin::WebEngineResponsePolicyDecidedCallback callback);
369
370   /**
371    * @copydoc Dali::Toolkit::WebView::RegisterCertificateConfirmedCallback()
372    */
373   void RegisterCertificateConfirmedCallback(Dali::WebEnginePlugin::WebEngineCertificateCallback callback);
374
375   /**
376    * @copydoc Dali::Toolkit::WebView::RegisterSslCertificateChangedCallback()
377    */
378   void RegisterSslCertificateChangedCallback(Dali::WebEnginePlugin::WebEngineCertificateCallback callback);
379
380   /**
381    * @copydoc Dali::Toolkit::WebView::RegisterHttpAuthHandlerCallback()
382    */
383   void RegisterHttpAuthHandlerCallback(Dali::WebEnginePlugin::WebEngineHttpAuthHandlerCallback callback);
384
385   /**
386    * @copydoc Dali::Toolkit::WebView::RegisterContextMenuShownCallback()
387    */
388   void RegisterContextMenuShownCallback(Dali::WebEnginePlugin::WebEngineContextMenuShownCallback callback);
389
390   /**
391    * @copydoc Dali::Toolkit::WebView::RegisterContextMenuHiddenCallback()
392    */
393   void RegisterContextMenuHiddenCallback(Dali::WebEnginePlugin::WebEngineContextMenuHiddenCallback callback);
394
395   /**
396    * @copydoc Dali::Toolkit::WebView::GetPlainTextAsynchronously()
397    */
398   void GetPlainTextAsynchronously(Dali::WebEnginePlugin::PlainTextReceivedCallback callback);
399
400 public: // Properties
401   /**
402    * @brief Called when a property of an object of this type is set.
403    *
404    * @param[in] object The object whose property is set.
405    * @param[in] index The property index.
406    * @param[in] value The new property value.
407    */
408   static void SetProperty(Dali::BaseObject* object, Dali::Property::Index index, const Dali::Property::Value& value);
409
410   /**
411    * @brief Called to retrieve a property of an object of this type.
412    *
413    * @param[in] object The object whose property is to be retrieved.
414    * @param[in] index The property index.
415    * @return The current value of the property.
416    */
417   static Dali::Property::Value GetProperty(Dali::BaseObject* object, Dali::Property::Index propertyIndex);
418
419 private: // From Control
420   /**
421    * @copydoc Toolkit::Control::OnInitialize()
422    */
423   void OnInitialize() override;
424
425   /**
426    * @copydoc Toolkit::Control::GetNaturalSize
427    */
428   Vector3 GetNaturalSize() override;
429
430   /**
431    * @copydoc Toolkit::Control::OnKeyEvent()
432    */
433   bool OnKeyEvent(const Dali::KeyEvent& event) override;
434
435   /**
436    * @copydoc Toolkit::Control::OnKeyInputFocusGained()
437    */
438   void OnKeyInputFocusGained() override;
439
440   /**
441    * @copydoc Toolkit::Control::OnKeyInputFocusLost()
442    */
443   void OnKeyInputFocusLost() override;
444
445   /**
446    * @copydoc Toolkit::Control::OnSceneConnection()
447    */
448   void OnSceneConnection(int depth) override;
449
450 private:
451   // Undefined
452   WebView(const WebView& webView);
453
454   WebView& operator=(const WebView& webView);
455
456   /**
457    * @brief Set an absolute scroll of the given view.
458    * @param[in] x The coordinate x of scroll
459    * @param[in] y The coordinate y of scroll
460    */
461   void SetScrollPosition(int32_t x, int32_t y);
462
463   /**
464    * @brief Get the current scroll position of the given view.
465    * @param[out] x The coordinate x of scroll
466    * @param[out] y The coordinate y of scroll
467    */
468   Dali::Vector2 GetScrollPosition() const;
469
470   /**
471    * @brief Get the possible scroll size of the given view.
472    * @param[out] width The width of scroll size
473    * @param[out] height The height of scroll size
474    */
475   Dali::Vector2 GetScrollSize() const;
476
477   /**
478    * @brief Get the last known content's size.
479    * @param[out] width The width of content's size
480    * @param[out] height The height of content's size
481    */
482   Dali::Vector2 GetContentSize() const;
483
484   /**
485    * @brief Return the title of the Web.
486    *
487    * @return The title of web page
488    */
489   std::string GetTitle() const;
490
491   /**
492    * @brief Set the background color of web page.
493    * @param[in] color The value of background color.
494    */
495   void SetDocumentBackgroundColor(Dali::Vector4 color);
496
497   /**
498    * @brief Clear tiles when hidden.
499    *
500    * @param[in] cleared Whether tiles are cleared or not
501    */
502   void ClearTilesWhenHidden(bool cleared);
503
504   /**
505    * @brief Set multiplier of cover area of tile.
506    *
507    * @param[in] multiplier The multiplier of cover area
508    */
509   void SetTileCoverAreaMultiplier(float multiplier);
510
511   /**
512    * @brief Enable cursor by client.
513    * @param[in] enabled Whether cursor is enabled or not.
514    */
515   void EnableCursorByClient(bool enabled);
516
517   /**
518    * @brief Get the selected text.
519    * @return The selected text
520    */
521   std::string GetSelectedText() const;
522
523   /**
524    * @brief Get url of web page.
525    * @return The string of url
526    */
527   std::string GetUrl() const;
528
529   /**
530    * @brief Get user agent string.
531    * @return The string value of user agent
532    */
533   std::string GetUserAgent() const;
534
535   /**
536    * @brief Set user agent string.
537    * @param[in] userAgent The string value of user agent
538    */
539   void SetUserAgent(const std::string& userAgent);
540
541   /**
542    * @brief Set zoom factor of the current page.
543    * @param[in] zoomFactor a new factor to be set.
544    */
545   void SetPageZoomFactor(float zoomFactor);
546
547   /**
548    * @brief Query the current zoom factor of the page。
549    * @return The current page zoom factor.
550    */
551   float GetPageZoomFactor() const;
552
553   /**
554    * @brief Set the current text zoom level。.
555    * @param[in] zoomFactor a new factor to be set.
556    */
557   void SetTextZoomFactor(float zoomFactor);
558
559   /**
560    * @brief Get the current text zoom level.
561    * @return The current text zoom factor.
562    */
563   float GetTextZoomFactor() const;
564
565   /**
566    * @brief Get the current load progress of the page.
567    * @return The load progress of the page.
568    */
569   float GetLoadProgressPercentage() const;
570
571   /**
572    * @brief Request to set the current page's visibility.
573    * @param[in] visible Visible or not.
574    *
575    * @return true if succeeded, false otherwise
576    */
577   bool SetVisibility(bool visible);
578
579   /**
580    * @brief Update display area of web view.
581    * @param[in] source The soource triggers Notification.
582    */
583   void UpdateDisplayArea(Dali::PropertyNotification& source);
584
585   /**
586    * @brief Enable/Disable video hole for video playing.
587    * @param[in] enabled True if video hole is enabled, false otherwise.
588    */
589   void EnableVideoHole(bool enabled);
590
591   /**
592    * @brief Enable blend mode.
593    * @param[in] blendEnabled True if turn on blend mode, false otherwise.
594    */
595   void EnableBlendMode(bool blendEnabled);
596
597   /**
598    * @brief Enable/disable mouse events. The default is enabled.
599    *
600    * @param[in] enabled True if mouse events are enabled, false otherwise
601    */
602   void EnableMouseEvents(bool enabled);
603
604   /**
605    * @brief Enable/disable key events. The default is enabled.
606    *
607    * @param[in] enabled True if key events enabled, false otherwise
608    */
609   void EnableKeyEvents(bool enabled);
610
611   /**
612    * @brief Create image view by pixel data.
613    * @param[in] pixel Pixel data
614    * @return The new image view
615    */
616   Dali::Toolkit::ImageView CreateImageView(Dali::PixelData pixel) const;
617
618   /**
619    * @brief Signal occurs when the Web View has been touched.
620    * @param[in] actor The Actor Touched
621    * @param[in] touch The Touch Data.
622    * @return Whether to consume event or not.
623    */
624   bool OnTouchEvent(Actor actor, const Dali::TouchEvent& touch);
625
626   /**
627    * @brief Signal occurs when the Web View has been hovered.
628    * @param[in] actor The Actor Hovered
629    * @param[in] hover The Hover Data.
630    * @return Whether to consume event or not.
631    */
632   bool OnHoverEvent(Actor actor, const Dali::HoverEvent& hover);
633
634   /**
635    * @brief Signal occurs when the Web View receives wheel event.
636    * @param[in] actor The Actor that receives Wheel event.
637    * @param[in] wheel The Wheel Data.
638    * @return Whether to consume event or not.
639    */
640   bool OnWheelEvent(Actor actor, const Dali::WheelEvent& wheel);
641
642   /**
643    * @brief Callback function to be called when frame is rendered.
644    */
645   void OnFrameRendered();
646
647   /**
648    * @brief Callback function to be called when frame is rendered. This is to check initial buffer is ready.
649    */
650   void OnInitialFrameRendered();
651
652   /**
653    * @brief Callback function to be called when visibility is changed.
654    * @param[in] actor The actor, or child of actor, whose visibility has changed
655    * @param[in] isVisible Whether the actor is now visible or not
656    * @param[in] type, Whether the actor's visible property has changed or a parent's
657    */
658   void OnVisibilityChanged(Actor actor, bool isVisible, Dali::DevelActor::VisibilityChange::Type type);
659
660   /**
661    * @brief callback for screen shot captured.
662    * @param[in] pixel Pixel data of screen shot.
663    */
664   void OnScreenshotCaptured(Dali::PixelData pixel);
665
666 private:
667   Dali::Toolkit::Visual::Base mVisual;
668   Dali::Size                  mWebViewSize;
669   Dali::WebEngine             mWebEngine;
670
671   std::unique_ptr<Dali::Toolkit::WebContext>         mWebContext;
672   std::unique_ptr<Dali::Toolkit::WebCookieManager>   mWebCookieManager;
673   std::unique_ptr<Dali::Toolkit::WebSettings>        mWebSettings;
674   std::unique_ptr<Dali::Toolkit::WebBackForwardList> mWebBackForwardList;
675
676   Dali::PropertyNotification mPositionUpdateNotification;
677   Dali::PropertyNotification mSizeUpdateNotification;
678   Dali::PropertyNotification mScaleUpdateNotification;
679   Dali::Rect<int32_t>        mWebViewArea;
680   bool                       mVideoHoleEnabled;
681   bool                       mMouseEventsEnabled;
682   bool                       mKeyEventsEnabled;
683
684   Dali::Toolkit::WebView::WebViewScreenshotCapturedCallback mScreenshotCapturedCallback;
685   Dali::WebEnginePlugin::WebEngineFrameRenderedCallback     mFrameRenderedCallback;
686 };
687
688 } // namespace Internal
689
690 inline Toolkit::Internal::WebView& GetImpl(Toolkit::WebView& handle)
691 {
692   DALI_ASSERT_ALWAYS(handle);
693   Dali::RefObject& impl = handle.GetImplementation();
694   return static_cast<Toolkit::Internal::WebView&>(impl);
695 }
696
697 inline const Toolkit::Internal::WebView& GetImpl(const Toolkit::WebView& handle)
698 {
699   DALI_ASSERT_ALWAYS(handle);
700   const Dali::RefObject& impl = handle.GetImplementation();
701   return static_cast<const Toolkit::Internal::WebView&>(impl);
702 }
703
704 } // namespace Toolkit
705
706 } // namespace Dali
707
708 #endif // DALI_TOOLKIT_INTERNAL_WEB_VIEW_H