Changeset 223550 in webkit


Ignore:
Timestamp:
Oct 17, 2017 9:20:26 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

[Curl] Forward declaration "class Cookie;" in CookieJarCurl.h should be "struct Cookie;"
https://bugs.webkit.org/show_bug.cgi?id=178378

Patch by Yoshiaki Jitsukawa <Yoshiaki.Jitsukawa@sony.com> on 2017-10-17
Reviewed by Per Arne Vollan.

No new tests. No change in behaviors.

  • platform/network/curl/CookieJarCurl.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r223549 r223550  
     12017-10-17  Yoshiaki Jitsukawa  <Yoshiaki.Jitsukawa@sony.com>
     2
     3        [Curl] Forward declaration "class Cookie;" in CookieJarCurl.h should be "struct Cookie;"
     4        https://bugs.webkit.org/show_bug.cgi?id=178378
     5
     6        Reviewed by Per Arne Vollan.
     7
     8        No new tests. No change in behaviors.
     9
     10        * platform/network/curl/CookieJarCurl.h:
     11
    1122017-10-17  Zalan Bujtas  <zalan@apple.com>
    213
  • trunk/Source/WebCore/platform/network/curl/CookieJarCurl.h

    r222938 r223550  
    11/*
    2 * Copyright (C) 2017 Sony Interactive Entertainment Inc.
    3 *
    4 *  This library is free software; you can redistribute it and/or
    5 *  modify it under the terms of the GNU Lesser General Public
    6 *  License as published by the Free Software Foundation; either
    7 *  version 2 of the License, or (at your option) any later version.
    8 *
    9 *  This library is distributed in the hope that it will be useful,
    10 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    11 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12 *  Lesser General Public License for more details.
    13 *
    14 *  You should have received a copy of the GNU Lesser General Public
    15 *  License along with this library; if not, write to the Free Software
    16 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
    17 */
     2 * Copyright (C) 2017 Sony Interactive Entertainment Inc.
     3 *
     4 *  This library is free software; you can redistribute it and/or
     5 *  modify it under the terms of the GNU Lesser General Public
     6 *  License as published by the Free Software Foundation; either
     7 *  version 2 of the License, or (at your option) any later version.
     8 *
     9 *  This library is distributed in the hope that it will be useful,
     10 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
     11 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     12 *  Lesser General Public License for more details.
     13 *
     14 *  You should have received a copy of the GNU Lesser General Public
     15 *  License along with this library; if not, write to the Free Software
     16 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
     17 */
    1818
    1919#pragma once
     
    2323namespace WebCore {
    2424
    25 class Cookie;
     25struct Cookie;
    2626class NetworkStorageSession;
    2727class URL;
Note: See TracChangeset for help on using the changeset viewer.