OLD | NEW |
---|---|
(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 | |
OLD | NEW |