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

Side by Side Diff: Source/modules/permissions/Permissions.h

Issue 760223003: Stub implementation of Permissions API module. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: no copies Created 6 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
(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 Permissions_h
6 #define Permissions_h
7
8 #include "bindings/core/v8/ScriptWrappable.h"
9
Peter Beverloo 2014/12/01 11:30:35 + bindings/core/v8/ScriptPromise.h + platform/heap
mlamouri (slow - plz ping) 2014/12/01 12:36:00 Done. I fwd declared AtomicString.
10 namespace blink {
11
12 class ScriptState;
13 class ScriptPromise;
14
15 class Permissions final
16 : public GarbageCollectedFinalized<Permissions>
17 , public ScriptWrappable {
18 DEFINE_WRAPPERTYPEINFO();
19 public:
20 virtual ~Permissions();
21
22 virtual void trace(Visitor*);
23
24 static ScriptPromise query(ScriptState*, const AtomicString&);
25 };
26
27 } // namespace blink
28
29 #endif // Permissions_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698