Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(352)

Side by Side Diff: Source/web/ChromeClientImpl.h

Issue 311903002: Remove dead notification for number of wheel event handlers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Another try. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/page/ChromeClient.h ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 160
161 virtual bool hasOpenedPopup() const OVERRIDE; 161 virtual bool hasOpenedPopup() const OVERRIDE;
162 virtual PassRefPtr<WebCore::PopupMenu> createPopupMenu(WebCore::LocalFrame&, WebCore::PopupMenuClient*) const OVERRIDE; 162 virtual PassRefPtr<WebCore::PopupMenu> createPopupMenu(WebCore::LocalFrame&, WebCore::PopupMenuClient*) const OVERRIDE;
163 WebCore::PagePopup* openPagePopup(WebCore::PagePopupClient*, const WebCore:: IntRect&); 163 WebCore::PagePopup* openPagePopup(WebCore::PagePopupClient*, const WebCore:: IntRect&);
164 void closePagePopup(WebCore::PagePopup*); 164 void closePagePopup(WebCore::PagePopup*);
165 virtual void setPagePopupDriver(WebCore::PagePopupDriver*) OVERRIDE; 165 virtual void setPagePopupDriver(WebCore::PagePopupDriver*) OVERRIDE;
166 virtual void resetPagePopupDriver() OVERRIDE; 166 virtual void resetPagePopupDriver() OVERRIDE;
167 167
168 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, cons t String& dialogMessage, WebCore::Document::PageDismissalType) const OVERRIDE; 168 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, cons t String& dialogMessage, WebCore::Document::PageDismissalType) const OVERRIDE;
169 169
170 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE;
171
172 virtual bool requestPointerLock() OVERRIDE; 170 virtual bool requestPointerLock() OVERRIDE;
173 virtual void requestPointerUnlock() OVERRIDE; 171 virtual void requestPointerUnlock() OVERRIDE;
174 172
175 virtual void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMem ber<WebCore::Element> >&) OVERRIDE; 173 virtual void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMem ber<WebCore::Element> >&) OVERRIDE;
176 virtual void didChangeValueInTextField(WebCore::HTMLFormControlElement&) OVE RRIDE; 174 virtual void didChangeValueInTextField(WebCore::HTMLFormControlElement&) OVE RRIDE;
177 virtual void didEndEditingOnTextField(WebCore::HTMLInputElement&) OVERRIDE; 175 virtual void didEndEditingOnTextField(WebCore::HTMLInputElement&) OVERRIDE;
178 virtual void handleKeyboardEventOnTextField(WebCore::HTMLInputElement&, WebC ore::KeyboardEvent&) OVERRIDE; 176 virtual void handleKeyboardEventOnTextField(WebCore::HTMLInputElement&, WebC ore::KeyboardEvent&) OVERRIDE;
179 177
180 // FIXME: Remove this method once we have input routing in the browser 178 // FIXME: Remove this method once we have input routing in the browser
181 // process. See http://crbug.com/339659. 179 // process. See http://crbug.com/339659.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); 212 explicit NavigatorContentUtilsClientImpl(WebViewImpl*);
215 213
216 WebViewImpl* m_webView; 214 WebViewImpl* m_webView;
217 }; 215 };
218 216
219 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr omeClientImpl(), client.isChromeClientImpl()); 217 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr omeClientImpl(), client.isChromeClientImpl());
220 218
221 } // namespace blink 219 } // namespace blink
222 220
223 #endif 221 #endif
OLDNEW
« no previous file with comments | « Source/core/page/ChromeClient.h ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698