Changeset 206163 in webkit


Ignore:
Timestamp:
Sep 20, 2016 12:11:37 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[WinCairo] Not building since 206044
https://bugs.webkit.org/show_bug.cgi?id=162246

Patch by Christopher Reid <Christopher.Reid@am.sony.com> on 2016-09-20
Reviewed by Alex Christensen.

No new tests. No change in behaviour.

  • bindings/js/JSWebGLRenderingContextCustom.cpp:
  • platform/network/curl/CookieJarCurl.cpp:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r206162 r206163  
     12016-09-20  Christopher Reid  <Christopher.Reid@am.sony.com>
     2
     3        [WinCairo]  Not building since 206044
     4        https://bugs.webkit.org/show_bug.cgi?id=162246
     5
     6        Reviewed by Alex Christensen.
     7
     8        No new tests. No change in behaviour.
     9
     10        * bindings/js/JSWebGLRenderingContextCustom.cpp:
     11        * platform/network/curl/CookieJarCurl.cpp:
     12
    1132016-09-20  Alex Christensen  <achristensen@webkit.org>
    214
  • trunk/Source/WebCore/bindings/js/JSWebGLRenderingContextCustom.cpp

    r191887 r206163  
    3131#include <JavaScriptCore/JSCellInlines.h>
    3232#include <JavaScriptCore/StructureInlines.h>
     33#include <heap/HeapInlines.h>
    3334#include <heap/SlotVisitorInlines.h>
    3435
  • trunk/Source/WebCore/platform/network/curl/CookieJarCurl.cpp

    r199167 r206163  
    224224    StringBuilder cookieStr;
    225225    cookieStr.reserveCapacity(finalStringLength);
    226     cookieStr.append(domain + "\t");
    227     cookieStr.append(allowSubdomains + "\t");
    228     cookieStr.append(path + "\t");
    229     cookieStr.append(secure + "\t");
    230     cookieStr.append(expiresStr + "\t");
    231     cookieStr.append(cookieName + "\t");
     226    cookieStr.append(domain);
     227    cookieStr.append("\t");
     228    cookieStr.append(allowSubdomains);
     229    cookieStr.append("\t");
     230    cookieStr.append(path);
     231    cookieStr.append("\t");
     232    cookieStr.append(secure);
     233    cookieStr.append("\t");
     234    cookieStr.append(expiresStr);
     235    cookieStr.append("\t");
     236    cookieStr.append(cookieName);
     237    cookieStr.append("\t");
    232238    cookieStr.append(cookieValue);
    233239
Note: See TracChangeset for help on using the changeset viewer.