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

Side by Side Diff: Source/modules/presentation/Presentation.h

Issue 408663002: Add the Presentation API module and a single event target (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698