Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome IOS - Is it just a UIWebView?

Tags:

ios

chrome-ios

I'm not sure this is a suitable question for here but is the new Chrome app for IOS just a UIWebView?

If so then would it be safe to assume that there shouldn't be any rendering differences between it and mobile Safari?

like image 919
SpaceBeers Avatar asked Jun 29 '12 09:06

SpaceBeers


People also ask

Is Chrome on iOS actually Chrome?

As you might have heard, Google Chrome is now available for the iPhone and iPad, but before you get too excited, you need to realize that it isn't Chrome at all. It's Apple's Safari with a 'chrome' interface. The actual browser, the rendering, and javascript engine is 100% Apple Safari.

What does Chrome for iOS mean?

Google Chrome is a great alternative browser for Safari on iOS devices like iPhone and iPad. You can easily install from the App Store and get ready with Google sign-in for data sync and personalization.

Which browser is used in iOS WebView?

Which browser iOS use in their webview? Safari browser installed in iOS & webview browser (if safari) are same or there are difference?

Is Chrome using WebKit on iOS?

Chrome for iOS continues to use WebKit because Apple requires that web browsers on that platform must do so.


1 Answers

No, it is not just a UiWebView. Mike Pinkerton's post on chrome-team googlegroup:

Chrome for iOS has some pretty major technical restrictions imposed by the App Store, such as the requirement to use the built-in UIWebView for rendering, no V8, and a single-process model. As a result it’s been challenging to re-use critical Chromium infrastructure components. That said, there is a lot of code we do leverage, such as the network layer, the sync and bookmarks infrastructure, omnibox, metrics and crash reporting, and a growing portion of content.

The networking layer alone contains a lot of optimizations to enhance your browsing. Here's a quick overview: http://www.igvita.com/2012/06/04/chrome-networking-dns-prefetch-and-tcp-preconnect/

like image 186
igrigorik Avatar answered Nov 04 '22 00:11

igrigorik