Changeset 190851 in webkit


Ignore:
Timestamp:
Oct 12, 2015 12:52:53 AM (9 years ago)
Author:
Gyuyoung Kim
Message:

[EFL] Bump Version/X in user agent
https://bugs.webkit.org/show_bug.cgi?id=150013

Reviewed by Csaba Osztrogonác.

EFL port needs to ensure maximum compatibility with existing web sites.
Thus version number needs to be bumped from 5.0 to 8.0 as GTK port.

  • UIProcess/efl/WebPageProxyEfl.cpp:

(WebKit::WebPageProxy::standardUserAgent):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r190841 r190851  
     12015-10-12  Gyuyoung Kim  <gyuyoung.kim@webkit.org>
     2
     3        [EFL] Bump Version/X in user agent
     4        https://bugs.webkit.org/show_bug.cgi?id=150013
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        EFL port needs to ensure maximum compatibility with existing web sites.
     9        Thus version number needs to be bumped from 5.0 to 8.0 as GTK port.
     10
     11        * UIProcess/efl/WebPageProxyEfl.cpp:
     12        (WebKit::WebPageProxy::standardUserAgent):
     13
    1142015-10-10  Dan Bernstein  <mitz@apple.com>
    215
  • trunk/Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp

    r180465 r190851  
    6464
    6565    standardUserAgentString = "Mozilla/5.0 (" + platform + "; " + osVersion + ") AppleWebKit/" + version
    66         + " (KHTML, like Gecko) Version/5.0 Safari/" + version;
     66        + " (KHTML, like Gecko) Version/8.0 Safari/" + version;
    6767
    6868    return applicationNameForUserAgent.isEmpty() ? standardUserAgentString : standardUserAgentString + ' ' + applicationNameForUserAgent;
Note: See TracChangeset for help on using the changeset viewer.