Changeset 133554 in webkit


Ignore:
Timestamp:
Nov 5, 2012 7:46:16 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL][WK2] Fix wrong coding style in the boilerplates
https://bugs.webkit.org/show_bug.cgi?id=101283

Patch by Jinwoo Song <jinwoo7.song@samsung.com> on 2012-11-05
Reviewed by Gyuyoung Kim.

Fix boilerplate which have wrong coding style.

  • UIProcess/efl/InputMethodContextEfl.cpp:
  • UIProcess/efl/InputMethodContextEfl.h:
  • UIProcess/efl/PageClientDefaultImpl.cpp:
  • UIProcess/efl/PageClientDefaultImpl.h:
  • UIProcess/efl/PageClientLegacyImpl.cpp:
  • UIProcess/efl/PageClientLegacyImpl.h:
Location:
trunk/Source/WebKit2
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r133543 r133554  
     12012-11-05  Jinwoo Song  <jinwoo7.song@samsung.com>
     2
     3        [EFL][WK2] Fix wrong coding style in the boilerplates
     4        https://bugs.webkit.org/show_bug.cgi?id=101283
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Fix boilerplate which have wrong coding style.
     9
     10        * UIProcess/efl/InputMethodContextEfl.cpp:
     11        * UIProcess/efl/InputMethodContextEfl.h:
     12        * UIProcess/efl/PageClientDefaultImpl.cpp:
     13        * UIProcess/efl/PageClientDefaultImpl.h:
     14        * UIProcess/efl/PageClientLegacyImpl.cpp:
     15        * UIProcess/efl/PageClientLegacyImpl.h:
     16
    1172012-11-05  KyungTae Kim  <ktf.kim@samsung.com>
    218
  • trunk/Source/WebKit2/UIProcess/efl/InputMethodContextEfl.cpp

    r133014 r133554  
    11/*
    2    Copyright (C) 2011 Samsung Electronics
    3    Copyright (C) 2012 Intel Corporation. All rights reserved.
    4 
    5    This library is free software; you can redistribute it and/or
    6    modify it under the terms of the GNU Library General Public
    7    License as published by the Free Software Foundation; either
    8    version 2 of the License, or (at your option) any later version.
    9 
    10    This library is distributed in the hope that it will be useful,
    11    but WITHOUT ANY WARRANTY; without even the implied warranty of
    12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    13    Library General Public License for more details.
    14 
    15    You should have received a copy of the GNU Library General Public License
    16    along with this library; see the file COPYING.LIB.  If not, write to
    17    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    18    Boston, MA 02110-1301, USA.
    19 */
     2 * Copyright (C) 2011 Samsung Electronics
     3 * Copyright (C) 2012 Intel Corporation. All rights reserved.
     4 *
     5 * This library is free software; you can redistribute it and/or
     6 * modify it under the terms of the GNU Library General Public
     7 * License as published by the Free Software Foundation; either
     8 * version 2 of the License, or (at your option) any later version.
     9 *
     10 * This library is distributed in the hope that it will be useful,
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     13 * Library General Public License for more details.
     14 *
     15 * You should have received a copy of the GNU Library General Public License
     16 * along with this library; see the file COPYING.LIB.  If not, write to
     17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     18 * Boston, MA 02110-1301, USA.
     19 */
    2020
    2121#include "config.h"
  • trunk/Source/WebKit2/UIProcess/efl/InputMethodContextEfl.h

    r132594 r133554  
    11/*
    2    Copyright (C) 2011 Samsung Electronics
    3    Copyright (C) 2012 Intel Corporation. All rights reserved.
    4 
    5    This library is free software; you can redistribute it and/or
    6    modify it under the terms of the GNU Library General Public
    7    License as published by the Free Software Foundation; either
    8    version 2 of the License, or (at your option) any later version.
    9 
    10    This library is distributed in the hope that it will be useful,
    11    but WITHOUT ANY WARRANTY; without even the implied warranty of
    12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    13    Library General Public License for more details.
    14 
    15    You should have received a copy of the GNU Library General Public License
    16    along with this library; see the file COPYING.LIB.  If not, write to
    17    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    18    Boston, MA 02110-1301, USA.
    19 */
     2 * Copyright (C) 2011 Samsung Electronics
     3 * Copyright (C) 2012 Intel Corporation. All rights reserved.
     4 *
     5 * This library is free software; you can redistribute it and/or
     6 * modify it under the terms of the GNU Library General Public
     7 * License as published by the Free Software Foundation; either
     8 * version 2 of the License, or (at your option) any later version.
     9 *
     10 * This library is distributed in the hope that it will be useful,
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     13 * Library General Public License for more details.
     14 *
     15 * You should have received a copy of the GNU Library General Public License
     16 * along with this library; see the file COPYING.LIB.  If not, write to
     17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     18 * Boston, MA 02110-1301, USA.
     19 */
    2020
    2121#ifndef InputMethodContextEfl_h
  • trunk/Source/WebKit2/UIProcess/efl/PageClientDefaultImpl.cpp

    r133464 r133554  
    11/*
    22 * Copyright (C) 2011 Samsung Electronics
    3    Copyright (C) 2012 Intel Corporation. All rights reserved.
     3 * Copyright (C) 2012 Intel Corporation. All rights reserved.
    44 *
    55 * Redistribution and use in source and binary forms, with or without
  • trunk/Source/WebKit2/UIProcess/efl/PageClientDefaultImpl.h

    r133464 r133554  
    11/*
    22 * Copyright (C) 2011 Samsung Electronics
    3    Copyright (C) 2012 Intel Corporation. All rights reserved.
     3 * Copyright (C) 2012 Intel Corporation. All rights reserved.
    44 *
    55 * Redistribution and use in source and binary forms, with or without
  • trunk/Source/WebKit2/UIProcess/efl/PageClientLegacyImpl.cpp

    r133543 r133554  
    11/*
    22 * Copyright (C) 2011 Samsung Electronics
    3    Copyright (C) 2012 Intel Corporation. All rights reserved.
     3 * Copyright (C) 2012 Intel Corporation. All rights reserved.
    44 *
    55 * Redistribution and use in source and binary forms, with or without
  • trunk/Source/WebKit2/UIProcess/efl/PageClientLegacyImpl.h

    r133464 r133554  
    11/*
    22 * Copyright (C) 2011 Samsung Electronics
    3    Copyright (C) 2012 Intel Corporation. All rights reserved.
     3 * Copyright (C) 2012 Intel Corporation. All rights reserved.
    44 *
    55 * Redistribution and use in source and binary forms, with or without
Note: See TracChangeset for help on using the changeset viewer.