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

Side by Side Diff: third_party/WebKit/Source/web/ChromeClientImpl.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) 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; 135 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override;
136 void enumerateChosenDirectory(FileChooser*) override; 136 void enumerateChosenDirectory(FileChooser*) override;
137 void setCursor(const Cursor&, LocalFrame*) override; 137 void setCursor(const Cursor&, LocalFrame*) override;
138 Cursor lastSetCursorForTesting() const override; 138 Cursor lastSetCursorForTesting() const override;
139 void setEventListenerProperties(WebEventListenerClass, 139 void setEventListenerProperties(WebEventListenerClass,
140 WebEventListenerProperties) override; 140 WebEventListenerProperties) override;
141 WebEventListenerProperties eventListenerProperties( 141 WebEventListenerProperties eventListenerProperties(
142 WebEventListenerClass) const override; 142 WebEventListenerClass) const override;
143 void setHasScrollEventHandlers(bool hasEventHandlers) override; 143 void setHasScrollEventHandlers(bool hasEventHandlers) override;
144 bool hasScrollEventHandlers() const override; 144 bool hasScrollEventHandlers() const override;
145 void setTouchAction(TouchAction) override; 145 void setTouchAction(LocalFrame*, TouchAction) override;
146 146
147 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override; 147 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override;
148 148
149 void attachRootLayer(WebLayer*, LocalFrame* localRoot) override; 149 void attachRootLayer(WebLayer*, LocalFrame* localRoot) override;
150 150
151 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, 151 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*,
152 LocalFrame*) override; 152 LocalFrame*) override;
153 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, 153 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*,
154 LocalFrame*) override; 154 LocalFrame*) override;
155 155
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 240
241 DEFINE_TYPE_CASTS(ChromeClientImpl, 241 DEFINE_TYPE_CASTS(ChromeClientImpl,
242 ChromeClient, 242 ChromeClient,
243 client, 243 client,
244 client->isChromeClientImpl(), 244 client->isChromeClientImpl(),
245 client.isChromeClientImpl()); 245 client.isChromeClientImpl());
246 246
247 } // namespace blink 247 } // namespace blink
248 248
249 #endif 249 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/ChromeClient.h ('k') | third_party/WebKit/Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698