1 /*
2 * Copyright (C) 2008 INdT - Instituto Nokia de Tecnologia
3 * Copyright (C) 2009-2010 ProFUSION embedded systems
4 * Copyright (C) 2009-2010 Samsung Electronics
5 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
6 *
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
20 */
21
22 #include "config.h"
23 #include "SearchPopupMenuEfl.h"
24
25 #include "NotImplemented.h"
26
27 namespace WebCore {
28
SearchPopupMenuEfl(PopupMenuClient * client)29 SearchPopupMenuEfl::SearchPopupMenuEfl(PopupMenuClient* client)
30 : m_popup(adoptRef(new PopupMenuEfl(client)))
31 {
32 notImplemented();
33 }
34
popupMenu()35 PopupMenu* SearchPopupMenuEfl::popupMenu()
36 {
37 return m_popup.get();
38 }
39
saveRecentSearches(const AtomicString &,const Vector<String> &)40 void SearchPopupMenuEfl::saveRecentSearches(const AtomicString&, const Vector<String>&)
41 {
42 notImplemented();
43 }
44
loadRecentSearches(const AtomicString &,Vector<String> &)45 void SearchPopupMenuEfl::loadRecentSearches(const AtomicString&, Vector<String>&)
46 {
47 notImplemented();
48 }
49
enabled()50 bool SearchPopupMenuEfl::enabled()
51 {
52 notImplemented();
53 return true;
54 }
55
56 }
57