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

Side by Side Diff: third_party/WebKit/Source/core/loader/EmptyClients.h

Issue 2626133002: Candidate fix for PointerEvent-OOPIF combination not working. (Closed)
Patch Set: Undo whitespace change to render_widget.cc Created 3 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 201
202 void setEventListenerProperties(WebEventListenerClass, 202 void setEventListenerProperties(WebEventListenerClass,
203 WebEventListenerProperties) override {} 203 WebEventListenerProperties) override {}
204 WebEventListenerProperties eventListenerProperties( 204 WebEventListenerProperties eventListenerProperties(
205 WebEventListenerClass) const override { 205 WebEventListenerClass) const override {
206 return WebEventListenerProperties::Nothing; 206 return WebEventListenerProperties::Nothing;
207 } 207 }
208 void setHasScrollEventHandlers(bool) override {} 208 void setHasScrollEventHandlers(bool) override {}
209 bool hasScrollEventHandlers() const override { return false; } 209 bool hasScrollEventHandlers() const override { return false; }
210 210
211 void setTouchAction(TouchAction) override {} 211 void setTouchAction(LocalFrame*, TouchAction) override {}
212 212
213 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} 213 void didAssociateFormControlsAfterLoad(LocalFrame*) override {}
214 214
215 void annotatedRegionsChanged() override {} 215 void annotatedRegionsChanged() override {}
216 String acceptLanguages() override; 216 String acceptLanguages() override;
217 217
218 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override { 218 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override {
219 return nullptr; 219 return nullptr;
220 } 220 }
221 221
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 ~EmptyContextMenuClient() override {} 426 ~EmptyContextMenuClient() override {}
427 bool showContextMenu(const ContextMenu*, bool) override { return false; } 427 bool showContextMenu(const ContextMenu*, bool) override { return false; }
428 void clearContextMenu() override {} 428 void clearContextMenu() override {}
429 }; 429 };
430 430
431 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 431 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
432 432
433 } // namespace blink 433 } // namespace blink
434 434
435 #endif // EmptyClients_h 435 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/input/TouchEventManager.cpp ('k') | third_party/WebKit/Source/core/page/ChromeClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698