summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webview_impl.h
diff options
context:
space:
mode:
authorjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-06 20:09:34 +0000
committerjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-06 20:09:34 +0000
commite87756663c751faea164d8deddbfccbfbbb1cfca (patch)
tree269ac3d28f509b63046674aa1c1204288bf2292b /webkit/glue/webview_impl.h
parent120671afa85fa5bcbe689c5078d0eeb6449b3b6d (diff)
downloadchromium_src-e87756663c751faea164d8deddbfccbfbbb1cfca.zip
chromium_src-e87756663c751faea164d8deddbfccbfbbb1cfca.tar.gz
chromium_src-e87756663c751faea164d8deddbfccbfbbb1cfca.tar.bz2
Reverting the autofill popu CL as it creates perf regression.
TBR=nsylvain Review URL: http://codereview.chromium.org/9460 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4908 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webview_impl.h')
-rw-r--r--webkit/glue/webview_impl.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/webkit/glue/webview_impl.h b/webkit/glue/webview_impl.h
index 83cddebd..da0d533 100644
--- a/webkit/glue/webview_impl.h
+++ b/webkit/glue/webview_impl.h
@@ -27,12 +27,10 @@ class HistoryItem;
class KeyboardEvent;
class Page;
class PlatformKeyboardEvent;
-class PopupContainer;
class Range;
class Widget;
}
-class AutocompletePopupMenuClient;
class ImageResourceFetcher;
class SearchableFormData;
struct WebDropData;
@@ -100,10 +98,6 @@ class WebViewImpl : public WebView, public WebCore::BackForwardListClient {
virtual void DragTargetDragLeave();
virtual void DragTargetDrop(
int client_x, int client_y, int screen_x, int screen_y);
- virtual void AutofillSuggestionsForNode(
- int64 node_id,
- const std::vector<std::wstring>& suggestions,
- int default_suggestion_index);
// WebViewImpl
@@ -184,9 +178,6 @@ class WebViewImpl : public WebView, public WebCore::BackForwardListClient {
bool errored,
const SkBitmap& image);
- // Hides the autocomplete popup if it is showing.
- void HideAutoCompletePopup();
-
protected:
friend class WebView; // So WebView::Create can call our constructor
@@ -296,13 +287,6 @@ class WebViewImpl : public WebView, public WebCore::BackForwardListClient {
// Represents whether or not this object should process incoming IME events.
bool ime_accept_events_;
- // The currently shown autocomplete popup.
- RefPtr<WebCore::PopupContainer> autocomplete_popup_;
-
- // The popup client of the currently shown autocomplete popup. Necessary for
- // managing the life of the client.
- RefPtr<AutocompletePopupMenuClient> autocomplete_popup_client_;
-
// HACK: current_input_event is for ChromeClientImpl::show(), until we can fix
// WebKit to pass enough information up into ChromeClient::show() so we can
// decide if the window.open event was caused by a middle-mouse click