X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Fweb-view%2Fweb-view.cpp;h=a0672ae10fd80c75cb00169ab46ef7bb27667b2a;hp=4c9de03b706e7af014ac47996e3a08a88702a55a;hb=cf5f3348fac583716248323ab040f384f856e39a;hpb=70510385d88cfbd5c232117d8436ca74c523e172 diff --git a/dali-toolkit/devel-api/controls/web-view/web-view.cpp b/dali-toolkit/devel-api/controls/web-view/web-view.cpp index 4c9de03..a0672ae 100755 --- a/dali-toolkit/devel-api/controls/web-view/web-view.cpp +++ b/dali-toolkit/devel-api/controls/web-view/web-view.cpp @@ -20,6 +20,7 @@ // INTERNAL INCLUDES #include +#include namespace Dali { @@ -58,6 +59,11 @@ WebView WebView::New(const std::string& locale, const std::string& timezoneId) return Internal::WebView::New(locale, timezoneId); } +WebView WebView::New( int argc, char** argv ) +{ + return Internal::WebView::New( argc, argv ); +} + WebView WebView::DownCast(BaseHandle handle) { return Control::DownCast(handle); @@ -83,6 +89,11 @@ Dali::Toolkit::WebBackForwardList* WebView::GetBackForwardList() const return Dali::Toolkit::GetImpl( *this ).GetBackForwardList(); } +Dali::Toolkit::ImageView& WebView::GetFavicon() +{ + return Dali::Toolkit::GetImpl( *this ).GetFavicon(); +} + void WebView::LoadUrl(const std::string& url) { Dali::Toolkit::GetImpl(*this).LoadUrl(url); @@ -153,6 +164,11 @@ void WebView::AddJavaScriptMessageHandler(const std::string& exposedObjectName, Dali::Toolkit::GetImpl(*this).AddJavaScriptMessageHandler(exposedObjectName, handler); } +void WebView::ClearAllTilesResources() +{ + Dali::Toolkit::GetImpl( *this ).ClearAllTilesResources(); +} + void WebView::ClearHistory() { Dali::Toolkit::GetImpl(*this).ClearHistory();