Chromium Code Reviews| Index: Source/bindings/dart/DartServiceInternal.h |
| diff --git a/Source/bindings/dart/DartServiceInternal.h b/Source/bindings/dart/DartServiceInternal.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ebe0763f518d8e833263d0962f1d0a5b957e6eb9 |
| --- /dev/null |
| +++ b/Source/bindings/dart/DartServiceInternal.h |
| @@ -0,0 +1,21 @@ |
| +// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| +// for details. All rights reserved. Use of this source code is governed by a |
| +// BSD-style license that can be found in the LICENSE file. |
| + |
| +#ifndef DartServiceInternal_h |
| +#define DartServiceInternal_h |
| + |
| +#include <dart_api.h> |
| + |
| +namespace WebCore { |
| + |
| +class DartServiceInternal { |
| +public: |
| + static Dart_Port GetPortIdFromPort(Dart_Handle port); |
| + static void PostOOB(Dart_Handle targetPort, Dart_Handle replyPort, Dart_Handle message); |
| +}; |
| + |
| + |
| +} |
|
siva
2013/12/13 21:48:22
} // namespace WebCore
|
| + |
| +#endif // DartService_h |