Changeset 88944 in webkit


Ignore:
Timestamp:
Jun 15, 2011 9:18:55 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-06-15 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r88907.
http://trac.webkit.org/changeset/88907
https://bugs.webkit.org/show_bug.cgi?id=62732

See comment #15 by Nikolas Zimmermann on bug 62527 regarding
the deprecation of makeString() (Requested by acidx on
#webkit).

  • UIProcess/efl/WebPageProxyEfl.cpp: (WebKit::WebPageProxy::standardUserAgent):
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r88926 r88944  
     12011-06-15  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r88907.
     4        http://trac.webkit.org/changeset/88907
     5        https://bugs.webkit.org/show_bug.cgi?id=62732
     6
     7        See comment #15 by Nikolas Zimmermann on bug 62527 regarding
     8        the deprecation of makeString() (Requested by acidx on
     9        #webkit).
     10
     11        * UIProcess/efl/WebPageProxyEfl.cpp:
     12        (WebKit::WebPageProxy::standardUserAgent):
     13
    1142011-06-15  Csaba Osztrogonác  <ossy@webkit.org>
    215
  • trunk/Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp

    r88907 r88944  
    3131
    3232#include <sys/utsname.h>
    33 #include <wtf/text/StringConcatenate.h>
    3433
    3534namespace WebKit {
     
    4241String WebPageProxy::standardUserAgent(const String& applicationNameForUserAgent)
    4342{
    44     String platform;
    45     String version;
    46     String osVersion;
     43    WTF::String platform;
     44    WTF::String version;
     45    WTF::String osVersion;
    4746
    4847#if PLATFORM(X11)
     
    5554    struct utsname name;
    5655    if (uname(&name) != -1)
    57         osVersion = makeString(name.sysname, ' ', name.machine);
     56        osVersion = WTF::String(name.sysname) + " " + WTF::String(name.machine);
    5857    else
    5958        osVersion = "Unknown";
Note: See TracChangeset for help on using the changeset viewer.