OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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 Presentation_h | |
6 #define Presentation_h | |
7 | |
8 #include "bindings/core/v8/ScriptWrappable.h" | |
9 #include "core/dom/ActiveDOMObject.h" | |
10 | |
11 namespace WebCore { | |
12 | |
13 class Presentation FINAL | |
14 : public GarbageCollectedFinalized<Presentation> | |
15 , public ScriptWrappable | |
16 , public ActiveDOMObject { | |
Peter Beverloo
2014/07/19 10:16:13
This doesn't have to be an ActiveDOMObject in this
whywhat
2014/07/23 00:39:26
Ok. Seems like it has to be something so I made it
| |
17 public: | |
18 static Presentation* create(ExecutionContext*); | |
19 virtual ~Presentation(); | |
20 void trace(Visitor*); | |
Peter Beverloo
2014/07/19 10:16:13
virtual void trace(Visitor*) OVERRIDE;
whywhat
2014/07/23 00:39:26
This is not declared in any of the base classes of
| |
21 | |
22 bool displayAvailable() const; | |
23 | |
24 private: | |
25 Presentation(ExecutionContext*); | |
26 }; | |
27 | |
28 } // namespace WebCore | |
29 | |
30 #endif // Presentation_h | |
OLD | NEW |