• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *  This library is free software; you can redistribute it and/or
3  *  modify it under the terms of the GNU Lesser General Public
4  *  License as published by the Free Software Foundation; either
5  *  version 2 of the License, or (at your option) any later version.
6  *
7  *  This library is distributed in the hope that it will be useful,
8  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  Lesser General Public License for more details.
11  *
12  *  You should have received a copy of the GNU Lesser General Public
13  *  License along with this library; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
15  */
16 
17 #include "config.h"
18 #include "SearchPopupMenu.h"
19 
20 #include "NotImplemented.h"
21 
22 namespace WebCore {
23 
SearchPopupMenu(PopupMenuClient * client)24 SearchPopupMenu::SearchPopupMenu(PopupMenuClient* client)
25     : PopupMenu(client)
26 {
27     notImplemented();
28 }
29 
saveRecentSearches(const AtomicString &,const Vector<String> &)30 void SearchPopupMenu::saveRecentSearches(const AtomicString&, const Vector<String>&)
31 {
32     notImplemented();
33 }
34 
loadRecentSearches(const AtomicString &,Vector<String> &)35 void SearchPopupMenu::loadRecentSearches(const AtomicString&, Vector<String>&)
36 {
37     notImplemented();
38 }
39 
enabled()40 bool SearchPopupMenu::enabled()
41 {
42     notImplemented();
43     return false;
44 }
45 
46 }
47