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

Side by Side Diff: third_party/WebKit/Source/core/mojo/MojoHandle.h

Issue 2400563002: Adds Mojo IDL. (Closed)
Patch Set: addressed comments Created 3 years, 11 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 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 MojoHandle_h
6 #define MojoHandle_h
7
8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "mojo/public/cpp/system/core.h"
10
11 namespace blink {
12
13 class MojoReadMessageOptions;
14 class MojoReadMessageResult;
15 class MojoWatchCallback;
16 class MojoWatcher;
17 class MojoWatchOptions;
18 class MojoWriteMessageOptions;
19 class ScriptState;
20
21 class MojoHandle final : public GarbageCollectedFinalized<MojoHandle>,
22 public ScriptWrappable {
23 DEFINE_WRAPPERTYPEINFO();
24
25 public:
26 CORE_EXPORT static MojoHandle* create(mojo::ScopedHandle);
27
28 void close();
29 MojoWatcher* watch(ScriptState*, const MojoWatchOptions&, MojoWatchCallback*);
30 MojoResult writeMessage(const MojoWriteMessageOptions&);
31 void readMessage(const MojoReadMessageOptions&, MojoReadMessageResult&);
32
33 DEFINE_INLINE_TRACE() {}
34
35 private:
36 explicit MojoHandle(mojo::ScopedHandle);
37
38 mojo::ScopedHandle m_handle;
39 };
40
41 } // namespace blink
42
43 #endif // MojoHandle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698