Index: mojo/edk/js/handle.cc |
diff --git a/mojo/edk/js/handle.cc b/mojo/edk/js/handle.cc |
index ae3415f05647e777a428eef41ba0bf1516e4c03e..de8f3383836494bc63fc67134da1cc88302797a3 100644 |
--- a/mojo/edk/js/handle.cc |
+++ b/mojo/edk/js/handle.cc |
@@ -4,7 +4,6 @@ |
#include "mojo/edk/js/handle.h" |
-#include <sstream> |
#include "mojo/edk/js/handle_close_observer.h" |
namespace mojo { |
@@ -20,23 +19,6 @@ HandleWrapper::~HandleWrapper() { |
NotifyCloseObservers(); |
} |
-std::string HandleWrapper::ToString() { |
- std::ostringstream oss; |
- oss << "[mojo::Handle "; |
- if (handle_.is_valid()) |
- oss << handle_.get().value(); |
- else |
- oss << "null"; |
- oss << "]"; |
- return oss.str(); |
-} |
- |
-gin::ObjectTemplateBuilder HandleWrapper::GetObjectTemplateBuilder( |
- v8::Isolate* isolate) { |
- return Wrappable<HandleWrapper>::GetObjectTemplateBuilder(isolate) |
- .SetMethod("toString", &HandleWrapper::ToString); |
-} |
- |
void HandleWrapper::Close() { |
NotifyCloseObservers(); |
handle_.reset(); |