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

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

Issue 2530883002: Refactor overlay fullscreen video handling into a single callback (Closed)
Patch Set: rebase Created 4 years 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
156 void enterFullscreenForElement(Element*) override; 156 void enterFullscreenForElement(Element*) override;
157 void exitFullscreen(LocalFrame*) override; 157 void exitFullscreen(LocalFrame*) override;
158 void fullscreenElementChanged(Element*, Element*) override;
158 159
159 void clearCompositedSelection(LocalFrame*) override; 160 void clearCompositedSelection(LocalFrame*) override;
160 void updateCompositedSelection(LocalFrame*, 161 void updateCompositedSelection(LocalFrame*,
161 const CompositedSelection&) override; 162 const CompositedSelection&) override;
162 163
163 // ChromeClient methods: 164 // ChromeClient methods:
164 void postAccessibilityNotification(AXObject*, 165 void postAccessibilityNotification(AXObject*,
165 AXObjectCache::AXNotification) override; 166 AXObjectCache::AXNotification) override;
166 String acceptLanguages() override; 167 String acceptLanguages() override;
167 168
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 239
239 DEFINE_TYPE_CASTS(ChromeClientImpl, 240 DEFINE_TYPE_CASTS(ChromeClientImpl,
240 ChromeClient, 241 ChromeClient,
241 client, 242 client,
242 client->isChromeClientImpl(), 243 client->isChromeClientImpl(),
243 client.isChromeClientImpl()); 244 client.isChromeClientImpl());
244 245
245 } // namespace blink 246 } // namespace blink
246 247
247 #endif 248 #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