| Index: src/native_client/src/trusted/desc/nacl_desc_wrapper.h
|
| diff --git a/src/native_client/src/trusted/desc/nacl_desc_wrapper.h b/src/native_client/src/trusted/desc/nacl_desc_wrapper.h
|
| index 2d394aa74b764188a0d6e1ac948634ce75088ed2..9e7a259786056cad8933f4e97b8057333c9d26f2 100644
|
| --- a/src/native_client/src/trusted/desc/nacl_desc_wrapper.h
|
| +++ b/src/native_client/src/trusted/desc/nacl_desc_wrapper.h
|
| @@ -29,8 +29,6 @@ class DescWrapperFactory {
|
| DescWrapper* MakeImcSock(NaClHandle handle);
|
| // Create a shared memory object.
|
| DescWrapper* MakeShm(size_t size);
|
| - // Create a DescWrapper from a socket address string.
|
| - DescWrapper* MakeSocketAddress(const char* addr);
|
| // Create a DescWrapper from opening a host file.
|
| DescWrapper* OpenHostFile(const char* fname, int flags, int mode);
|
| // Create a DescWrapper for the designated invalid descriptor
|
| @@ -97,10 +95,6 @@ class DescWrapper {
|
| // Get the type of the wrapped NaClDesc.
|
| enum NaClDescTypeTag type_tag() const { return desc_->vtbl->typeTag; }
|
|
|
| - // Get the path string from a NaClDescConnCap. Returns NULL if the
|
| - // type of the NaClDesc is not NACL_DESC_CONN_CAP (a socket address).
|
| - const char* conn_cap_path() const;
|
| -
|
| // We do not replicate the underlying NaClDesc object hierarchy, so there
|
| // are obviously many more methods than a particular derived class
|
| // implements.
|
|
|