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

Unified Diff: runtime/bin/native_service.h

Issue 24395013: Merge services into a shared IOService in dart:io, and use a native port. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Finish off native_service Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/io_sources.gypi ('k') | runtime/bin/native_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/native_service.h
diff --git a/runtime/bin/native_service.h b/runtime/bin/native_service.h
deleted file mode 100644
index c001750d31367b6ea425c8d3721c31588c86010e..0000000000000000000000000000000000000000
--- a/runtime/bin/native_service.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// 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 BIN_NATIVE_SERVICE_H_
-#define BIN_NATIVE_SERVICE_H_
-
-#include "include/dart_api.h"
-#include "include/dart_native_api.h"
-#include "platform/globals.h"
-#include "platform/thread.h"
-
-
-namespace dart {
-namespace bin {
-
-// Utility class to set up a native service and allocate Dart native
-// ports to interact with it from Dart code. The number of native ports
-// allocated for each service is limited.
-class NativeService {
- public:
- // Create a native service with the given name and handler. Allow
- // the creation of [number_of_ports] native ports for the service.
- // If GetServicePort is called more than [number_of_ports] times
- // one of the already allocated native ports will be reused.
- NativeService(const char* name,
- Dart_NativeMessageHandler handler,
- int number_of_ports);
-
- ~NativeService();
-
- // Get a Dart native port for this native service.
- Dart_Port GetServicePort();
-
- private:
- // Name and handler for the native service.
- const char* name_;
- Dart_NativeMessageHandler handler_;
-
- // Allocated native ports for the service. Mutex protected since
- // the service can be used from multiple isolates.
- dart::Mutex mutex_;
- int service_ports_size_;
- Dart_Port* service_ports_;
- int service_ports_index_;
-
- DISALLOW_IMPLICIT_CONSTRUCTORS(NativeService);
-};
-
-} // namespace bin
-} // namespace dart
-
-#endif // BIN_NATIVE_SERVICE_H_
« no previous file with comments | « runtime/bin/io_sources.gypi ('k') | runtime/bin/native_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698