SearchPopupMenuEfl.cpp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. #include "config.h"
  22. #include "SearchPopupMenuEfl.h"
  23. #include "NotImplemented.h"
  24. namespace WebCore {
  25. SearchPopupMenuEfl::SearchPopupMenuEfl(PopupMenuClient* client)
  26. : m_popup(adoptRef(new PopupMenuEfl(client)))
  27. {
  28. notImplemented();
  29. }
  30. PopupMenu* SearchPopupMenuEfl::popupMenu()
  31. {
  32. return m_popup.get();
  33. }
  34. void SearchPopupMenuEfl::saveRecentSearches(const AtomicString&, const Vector<String>&)
  35. {
  36. notImplemented();
  37. }
  38. void SearchPopupMenuEfl::loadRecentSearches(const AtomicString&, Vector<String>&)
  39. {
  40. notImplemented();
  41. }
  42. bool SearchPopupMenuEfl::enabled()
  43. {
  44. notImplemented();
  45. return true;
  46. }
  47. }