Changeset 80833 in webkit


Ignore:
Timestamp:
Mar 11, 2011 1:44:58 AM (13 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

2011-03-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Unreviewed build error fix.

[EFL] Fix build break when SHARED_CORE is ON
https://bugs.webkit.org/show_bug.cgi?id=56155

  • platform/efl/ContextMenuEfl.cpp: (WebCore::ContextMenu::ContextMenu):
  • platform/efl/ContextMenuItemEfl.cpp: (WebCore::ContextMenuItem::nativeMenuItem): (WebCore::ContextMenuItem::ContextMenuItem): (WebCore::ContextMenuItem::~ContextMenuItem):
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r80832 r80833  
     12011-03-11  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Unreviewed build error fix.
     4
     5        [EFL] Fix build break when SHARED_CORE is ON
     6        https://bugs.webkit.org/show_bug.cgi?id=56155
     7
     8        * platform/efl/ContextMenuEfl.cpp:
     9        (WebCore::ContextMenu::ContextMenu):
     10        * platform/efl/ContextMenuItemEfl.cpp:
     11        (WebCore::ContextMenuItem::nativeMenuItem):
     12        (WebCore::ContextMenuItem::ContextMenuItem):
     13        (WebCore::ContextMenuItem::~ContextMenuItem):
     14
    1152011-03-11  Andrey Kosyakov  <caseq@chromium.org>
    216
  • trunk/Source/WebCore/platform/efl/ContextMenuEfl.cpp

    r80794 r80833  
    33 *  Copyright (C) 2008 INdT - Instituto Nokia de Tecnologia
    44 *  Copyright (C) 2009-2010 ProFUSION embedded systems
    5  *  Copyright (C) 2009-2010 Samsung Electronics
     5 *  Copyright (C) 2011 Samsung Electronics
    66 *
    77 *  This library is free software; you can redistribute it and/or
     
    2727namespace WebCore {
    2828
     29#if USE(CROSS_PLATFORM_CONTEXT_MENUS)
    2930ContextMenu::ContextMenu(void* menu)
    3031{
    31 #if USE(CROSS_PLATFORM_CONTEXT_MENUS)
    3232    getContextMenuItems(menu, m_items);
    33 #endif
    3433}
    3534
    36 ContextMenu::ContextMenu()
    37 {
    38     notImplemented();
    39 }
    40 
    41 #if USE(CROSS_PLATFORM_CONTEXT_MENUS)
    4235void ContextMenu::getContextMenuItems(void* menu, Vector<ContextMenuItem>& items)
    4336{
     
    5548    return createNativeMenuFromItems(m_items);
    5649}
     50#else
     51ContextMenu::ContextMenu()
     52{
     53    notImplemented();
     54}
    5755#endif
    5856
  • trunk/Source/WebCore/platform/efl/ContextMenuItemEfl.cpp

    r80794 r80833  
    44 * Copyright (C) 2008 INdT - Instituto Nokia de Tecnologia
    55 * Copyright (C) 2009-2010 ProFUSION embedded systems
    6  * Copyright (C) 2009-2010 Samsung Electronics
     6 * Copyright (C) 2011 Samsung Electronics
    77 *
    88 * Redistribution and use in source and binary forms, with or without
     
    3535namespace WebCore {
    3636
     37#if USE(CROSS_PLATFORM_CONTEXT_MENUS)
     38void* ContextMenuItem::nativeMenuItem() const
     39{
     40    notImplemented();
     41    return 0;
     42}
     43#else
    3744ContextMenuItem::ContextMenuItem(ContextMenuItemType, ContextMenuAction, const String&, ContextMenu*)
    3845{
     
    4451    notImplemented();
    4552}
    46 
    47 #if USE(CROSS_PLATFORM_CONTEXT_MENUS)
    48 void* ContextMenuItem::nativeMenuItem() const
    49 {
    50     notImplemented();
    51     return 0;
    52 }
    53 #endif
    5453
    5554ContextMenuItemType ContextMenuItem::type() const
     
    9695    notImplemented();
    9796}
    98 
     97#endif
    9998}
Note: See TracChangeset for help on using the changeset viewer.