[M67 Dev][EWK] Classify EWK APIs by public, internal, or product
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / efl_integration / public / ewk_popup_menu_item.cc
1 // Copyright 2012 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ewk_popup_menu_item_internal.h"
6 #include "private/ewk_private.h"
7
8 Ewk_Popup_Menu_Item_Type ewk_popup_menu_item_type_get(const Ewk_Popup_Menu_Item* item)
9 {
10   LOG_EWK_API_MOCKUP();
11   return EWK_POPUP_MENU_UNKNOWN;
12 }
13
14 const char* ewk_popup_menu_item_text_get(const Ewk_Popup_Menu_Item* item)
15 {
16   LOG_EWK_API_MOCKUP();
17   return NULL;
18 }
19
20 Eina_Bool ewk_popup_menu_item_selected_get(const Ewk_Popup_Menu_Item* item)
21 {
22   LOG_EWK_API_MOCKUP();
23   return false;
24 }