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

Side by Side Diff: third_party/WebKit/Source/core/page/ChromeClient.h

Issue 2855843002: Reland "Sync requestFullscreen() and exitFullscreen() algorithms with the spec" (Closed)
Patch Set: Reland "Sync requestFullscreen() and exitFullscreen() algorithms with the spec" Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
3 * reserved. 3 * 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 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 // one. Otherwise it sets it for the WebViewImpl. 259 // one. Otherwise it sets it for the WebViewImpl.
260 virtual void AttachRootLayer(WebLayer*, LocalFrame* local_root) = 0; 260 virtual void AttachRootLayer(WebLayer*, LocalFrame* local_root) = 0;
261 261
262 virtual void AttachCompositorAnimationTimeline(CompositorAnimationTimeline*, 262 virtual void AttachCompositorAnimationTimeline(CompositorAnimationTimeline*,
263 LocalFrame* local_root) {} 263 LocalFrame* local_root) {}
264 virtual void DetachCompositorAnimationTimeline(CompositorAnimationTimeline*, 264 virtual void DetachCompositorAnimationTimeline(CompositorAnimationTimeline*,
265 LocalFrame* local_root) {} 265 LocalFrame* local_root) {}
266 266
267 virtual void EnterFullscreen(LocalFrame&) {} 267 virtual void EnterFullscreen(LocalFrame&) {}
268 virtual void ExitFullscreen(LocalFrame&) {} 268 virtual void ExitFullscreen(LocalFrame&) {}
269 virtual void FullscreenElementChanged(Element*, Element*) {} 269 virtual void FullscreenElementChanged(Element* from_element,
270 Element* to_element) {}
270 271
271 virtual void ClearCompositedSelection(LocalFrame*) {} 272 virtual void ClearCompositedSelection(LocalFrame*) {}
272 virtual void UpdateCompositedSelection(LocalFrame*, 273 virtual void UpdateCompositedSelection(LocalFrame*,
273 const CompositedSelection&) {} 274 const CompositedSelection&) {}
274 275
275 virtual void SetEventListenerProperties(LocalFrame*, 276 virtual void SetEventListenerProperties(LocalFrame*,
276 WebEventListenerClass, 277 WebEventListenerClass,
277 WebEventListenerProperties) = 0; 278 WebEventListenerProperties) = 0;
278 virtual WebEventListenerProperties EventListenerProperties( 279 virtual WebEventListenerProperties EventListenerProperties(
279 LocalFrame*, 280 LocalFrame*,
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 WeakMember<Node> last_mouse_over_node_; 399 WeakMember<Node> last_mouse_over_node_;
399 LayoutPoint last_tool_tip_point_; 400 LayoutPoint last_tool_tip_point_;
400 String last_tool_tip_text_; 401 String last_tool_tip_text_;
401 402
402 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 403 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
403 }; 404 };
404 405
405 } // namespace blink 406 } // namespace blink
406 407
407 #endif // ChromeClient_h 408 #endif // ChromeClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698