Exemplo n.º 1
0
 public static bool webkit_web_view_can_go_back(IntPtr web_view)
 {
     if (EtoEnvironment.Platform.IsLinux)
     {
         return(NMLinux.webkit_web_view_can_go_back(web_view));
     }
     else if (EtoEnvironment.Platform.IsMac)
     {
         return(NMMac.webkit_web_view_can_go_back(web_view));
     }
     else
     {
         return(NMWindows.webkit_web_view_can_go_back(web_view));
     }
 }