| 1 | /* |
| 2 | * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 3 | * Copyright (C) 2010, 2011 Apple Inc. All rights reserved. |
| 4 | * |
| 5 | * This library is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU Library General Public |
| 7 | * License as published by the Free Software Foundation; either |
| 8 | * version 2 of the License, or (at your option) any later version. |
| 9 | * |
| 10 | * This library is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | * Library General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU Library General Public License |
| 16 | * along with this library; see the file COPYING.LIB. If not, write to |
| 17 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 | * Boston, MA 02110-1301, USA. |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | |
| 23 | #include "config.h" |
| 24 | #include "WebSearchPopupMenu.h" |
| 25 | |
| 26 | #include "WebCoreArgumentCoders.h" |
| 27 | #include "WebPage.h" |
| 28 | #include "WebPageProxyMessages.h" |
| 29 | #include "WebProcess.h" |
| 30 | #include <wtf/text/AtomicString.h> |
| 31 | |
| 32 | namespace WebKit { |
| 33 | using namespace WebCore; |
| 34 | |
| 35 | Ref<WebSearchPopupMenu> WebSearchPopupMenu::(WebPage* page, PopupMenuClient* client) |
| 36 | { |
| 37 | return adoptRef(*new WebSearchPopupMenu(page, client)); |
| 38 | } |
| 39 | |
| 40 | WebSearchPopupMenu::(WebPage* page, PopupMenuClient* client) |
| 41 | : m_popup(WebPopupMenu::create(page, client)) |
| 42 | { |
| 43 | } |
| 44 | |
| 45 | PopupMenu* WebSearchPopupMenu::() |
| 46 | { |
| 47 | return m_popup.get(); |
| 48 | } |
| 49 | |
| 50 | void WebSearchPopupMenu::(const AtomicString& name, const Vector<RecentSearch>& searchItems) |
| 51 | { |
| 52 | if (name.isEmpty()) |
| 53 | return; |
| 54 | |
| 55 | WebPage* page = m_popup->page(); |
| 56 | if (!page) |
| 57 | return; |
| 58 | |
| 59 | WebProcess::singleton().parentProcessConnection()->send(Messages::WebPageProxy::SaveRecentSearches(name, searchItems), page->pageID()); |
| 60 | } |
| 61 | |
| 62 | void WebSearchPopupMenu::(const AtomicString& name, Vector<RecentSearch>& resultItems) |
| 63 | { |
| 64 | if (name.isEmpty()) |
| 65 | return; |
| 66 | |
| 67 | WebPage* page = m_popup->page(); |
| 68 | if (!page) |
| 69 | return; |
| 70 | |
| 71 | WebProcess::singleton().parentProcessConnection()->sendSync(Messages::WebPageProxy::LoadRecentSearches(name), Messages::WebPageProxy::LoadRecentSearches::Reply(resultItems), page->pageID()); |
| 72 | } |
| 73 | |
| 74 | bool WebSearchPopupMenu::() |
| 75 | { |
| 76 | return true; |
| 77 | } |
| 78 | |
| 79 | } // namespace WebKit |
| 80 | |