Chromium Code Reviews

Side by Side Diff: third_party/WebKit/Source/core/dom/FullscreenCallbacks.h

Issue 2495423004: Convert FullscreenController to use WebCallbacks (Closed)
Patch Set: public/WebFullscreenCallbacks->core/FullscreenCallbacks Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef FullscreenCallbacks_h
6 #define FullscreenCallbacks_h
7
8 namespace blink {
9
10 class FullscreenCallbacks {
mlamouri (slow - plz ping) 2016/12/01 10:31:03 Any reason why you don't make this RequestFullscre
foolip 2016/12/01 10:52:59 A remnant from when I used callbacks also for exit
11 public:
12 virtual ~FullscreenCallbacks() = default;
13 virtual void onSuccess() = 0;
14 virtual void onError() = 0;
15 };
16
17 } // namespace blink
18
19 #endif // FullscreenCallbacks_h
OLDNEW

Powered by Google App Engine