Changeset 190993 in webkit


Ignore:
Timestamp:
Oct 13, 2015, 10:44:18 AM (10 years ago)
Author:
youenn.fablet@crf.canon.fr
Message:

Fix license and copyrights of WebCore js binding builtin files
https://bugs.webkit.org/show_bug.cgi?id=150027

Reviewed by Darin Adler.

Fixing copyright on all three files.
Moving to BSD-like license as they should have been in the first place.
Ordering lexicographically the builtin names in WebCoreBuiltinNames.h.

No change in behaviour.

  • bindings/js/WebCoreBuiltinNames.h:
  • bindings/js/WebCoreJSBuiltins.cpp:
  • bindings/js/WebCoreJSBuiltins.h:
  • bindings/js/WebCoreJSBuiltinInternals.h:
Location:
trunk/Source/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r190983 r190993  
     12015-10-13  Youenn Fablet  <youenn.fablet@crf.canon.fr>
     2
     3        Fix license and copyrights of WebCore js binding builtin files
     4        https://bugs.webkit.org/show_bug.cgi?id=150027
     5
     6        Reviewed by Darin Adler.
     7
     8        Fixing copyright on all three files.
     9        Moving to BSD-like license as they should have been in the first place.
     10        Ordering lexicographically the builtin names in WebCoreBuiltinNames.h.
     11
     12        No change in behaviour.
     13
     14        * bindings/js/WebCoreBuiltinNames.h:
     15        * bindings/js/WebCoreJSBuiltins.cpp:
     16        * bindings/js/WebCoreJSBuiltins.h:
     17        * bindings/js/WebCoreJSBuiltinInternals.h:
     18
    1192015-10-12  Antti Koivisto  <antti@apple.com>
    220
  • trunk/Source/WebCore/bindings/js/WebCoreBuiltinNames.h

    r190608 r190993  
    11/*
    2  *  Copyright (C) 1999-2001 Harri Porten (porten@kde.org)
    3  *  Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009 Apple Inc. All rights reserved.
    4  *  Copyright (C) 2007 Samuel Weinig <sam@webkit.org>
    5  *  Copyright (C) 2009 Google, Inc. All rights reserved.
     2 *  Copyright (c) 2015, Canon Inc. All rights reserved.
    63 *
    7  *  This library is free software; you can redistribute it and/or
    8  *  modify it under the terms of the GNU Lesser General Public
    9  *  License as published by the Free Software Foundation; either
    10  *  version 2 of the License, or (at your option) any later version.
    11  *
    12  *  This library is distributed in the hope that it will be useful,
    13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    15  *  Lesser General Public License for more details.
    16  *
    17  *  You should have received a copy of the GNU Lesser General Public
    18  *  License along with this library; if not, write to the Free Software
    19  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
     4 *  Redistribution and use in source and binary forms, with or without
     5 *  modification, are permitted provided that the following conditions
     6 *  are met:
     7 *  1.  Redistributions of source code must retain the above copyright
     8 *      notice, this list of conditions and the following disclaimer.
     9 *  2.  Redistributions in binary form must reproduce the above copyright
     10 *      notice, this list of conditions and the following disclaimer in the
     11 *      documentation and/or other materials provided with the distribution.
     12 *  3.  Neither the name of Canon Inc. nor the names of
     13 *      its contributors may be used to endorse or promote products derived
     14 *      from this software without specific prior written permission.
     15 *  THIS SOFTWARE IS PROVIDED BY CANON INC. AND ITS CONTRIBUTORS "AS IS" AND ANY
     16 *  EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     17 *  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     18 *  DISCLAIMED. IN NO EVENT SHALL CANON INC. AND ITS CONTRIBUTORS BE LIABLE FOR
     19 *  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     20 *  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     21 *  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
     22 *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     23 *  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     24 *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2025 */
    2126
     
    2833
    2934#define WEBCORE_COMMON_PRIVATE_IDENTIFIERS_EACH_PROPERTY_NAME(macro)\
    30     macro(state) \
    31     macro(underlyingSource) \
    32     macro(queue) \
    33     macro(queueSize) \
    34     macro(started) \
    3535    macro(closeRequested) \
    36     macro(pullAgain) \
    37     macro(pulling) \
    38     macro(reader) \
    39     macro(storedError) \
    40     macro(controller) \
    41     macro(strategySize) \
    42     macro(highWaterMark) \
    43     macro(readRequests) \
    44     macro(ownerReadableStream) \
    4536    macro(closedPromise) \
    4637    macro(closedPromiseResolve) \
    4738    macro(closedPromiseReject) \
    4839    macro(controlledReadableStream) \
     40    macro(controller) \
     41    macro(highWaterMark) \
     42    macro(ownerReadableStream) \
     43    macro(pullAgain) \
     44    macro(pulling) \
     45    macro(queue) \
     46    macro(queueSize) \
    4947    macro(readableStreamClosed) \
     48    macro(readableStreamErrored) \
    5049    macro(readableStreamReadable) \
    51     macro(readableStreamErrored) \
     50    macro(readRequests) \
     51    macro(reader) \
     52    macro(state) \
     53    macro(started) \
     54    macro(storedError) \
     55    macro(strategySize) \
     56    macro(underlyingSource) \
    5257    macro(ReadableStreamReader) \
    5358    macro(ReadableStreamController) \
  • trunk/Source/WebCore/bindings/js/WebCoreJSBuiltinInternals.h

    r190804 r190993  
    11/*
     2 *  Copyright (c) 2015, Canon Inc. All rights reserved.
    23 *
    3  *  This library is free software; you can redistribute it and/or
    4  *  modify it under the terms of the GNU Lesser General Public
    5  *  License as published by the Free Software Foundation; either
    6  *  version 2 of the License, or (at your option) any later version.
    7  *
    8  *  This library is distributed in the hope that it will be useful,
    9  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    10  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    11  *  Lesser General Public License for more details.
    12  *
    13  *  You should have received a copy of the GNU Lesser General Public
    14  *  License along with this library; if not, write to the Free Software
    15  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
     4 *  Redistribution and use in source and binary forms, with or without
     5 *  modification, are permitted provided that the following conditions
     6 *  are met:
     7 *  1.  Redistributions of source code must retain the above copyright
     8 *      notice, this list of conditions and the following disclaimer.
     9 *  2.  Redistributions in binary form must reproduce the above copyright
     10 *      notice, this list of conditions and the following disclaimer in the
     11 *      documentation and/or other materials provided with the distribution.
     12 *  3.  Neither the name of Canon Inc. nor the names of
     13 *      its contributors may be used to endorse or promote products derived
     14 *      from this software without specific prior written permission.
     15 *  THIS SOFTWARE IS PROVIDED BY CANON INC. AND ITS CONTRIBUTORS "AS IS" AND ANY
     16 *  EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     17 *  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     18 *  DISCLAIMED. IN NO EVENT SHALL CANON INC. AND ITS CONTRIBUTORS BE LIABLE FOR
     19 *  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     20 *  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     21 *  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
     22 *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     23 *  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     24 *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1625 */
    1726
  • trunk/Source/WebCore/bindings/js/WebCoreJSBuiltins.cpp

    r190794 r190993  
    11/*
     2 *  Copyright (c) 2015, Canon Inc. All rights reserved.
    23 *
    3  *  This library is free software; you can redistribute it and/or
    4  *  modify it under the terms of the GNU Lesser General Public
    5  *  License as published by the Free Software Foundation; either
    6  *  version 2 of the License, or (at your option) any later version.
    7  *
    8  *  This library is distributed in the hope that it will be useful,
    9  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    10  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    11  *  Lesser General Public License for more details.
    12  *
    13  *  You should have received a copy of the GNU Lesser General Public
    14  *  License along with this library; if not, write to the Free Software
    15  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
     4 *  Redistribution and use in source and binary forms, with or without
     5 *  modification, are permitted provided that the following conditions
     6 *  are met:
     7 *  1.  Redistributions of source code must retain the above copyright
     8 *      notice, this list of conditions and the following disclaimer.
     9 *  2.  Redistributions in binary form must reproduce the above copyright
     10 *      notice, this list of conditions and the following disclaimer in the
     11 *      documentation and/or other materials provided with the distribution.
     12 *  3.  Neither the name of Canon Inc. nor the names of
     13 *      its contributors may be used to endorse or promote products derived
     14 *      from this software without specific prior written permission.
     15 *  THIS SOFTWARE IS PROVIDED BY CANON INC. AND ITS CONTRIBUTORS "AS IS" AND ANY
     16 *  EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     17 *  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     18 *  DISCLAIMED. IN NO EVENT SHALL CANON INC. AND ITS CONTRIBUTORS BE LIABLE FOR
     19 *  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     20 *  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     21 *  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
     22 *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     23 *  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     24 *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1625 */
    1726
  • trunk/Source/WebCore/bindings/js/WebCoreJSBuiltins.h

    r190794 r190993  
    11/*
     2 *  Copyright (c) 2015, Canon Inc. All rights reserved.
    23 *
    3  *  This library is free software; you can redistribute it and/or
    4  *  modify it under the terms of the GNU Lesser General Public
    5  *  License as published by the Free Software Foundation; either
    6  *  version 2 of the License, or (at your option) any later version.
    7  *
    8  *  This library is distributed in the hope that it will be useful,
    9  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    10  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    11  *  Lesser General Public License for more details.
    12  *
    13  *  You should have received a copy of the GNU Lesser General Public
    14  *  License along with this library; if not, write to the Free Software
    15  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
     4 *  Redistribution and use in source and binary forms, with or without
     5 *  modification, are permitted provided that the following conditions
     6 *  are met:
     7 *  1.  Redistributions of source code must retain the above copyright
     8 *      notice, this list of conditions and the following disclaimer.
     9 *  2.  Redistributions in binary form must reproduce the above copyright
     10 *      notice, this list of conditions and the following disclaimer in the
     11 *      documentation and/or other materials provided with the distribution.
     12 *  3.  Neither the name of Canon Inc. nor the names of
     13 *      its contributors may be used to endorse or promote products derived
     14 *      from this software without specific prior written permission.
     15 *  THIS SOFTWARE IS PROVIDED BY CANON INC. AND ITS CONTRIBUTORS "AS IS" AND ANY
     16 *  EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     17 *  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     18 *  DISCLAIMED. IN NO EVENT SHALL CANON INC. AND ITS CONTRIBUTORS BE LIABLE FOR
     19 *  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     20 *  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     21 *  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
     22 *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     23 *  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     24 *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1625 */
    1726
Note: See TracChangeset for help on using the changeset viewer.