Index: src/trusted/plugin/desc_based_handle.cc |
diff --git a/src/trusted/plugin/desc_based_handle.cc b/src/trusted/plugin/desc_based_handle.cc |
deleted file mode 100644 |
index c422668dc2bee7df914ba881a78d5a6823765a76..0000000000000000000000000000000000000000 |
--- a/src/trusted/plugin/desc_based_handle.cc |
+++ /dev/null |
@@ -1,36 +0,0 @@ |
-/* |
- * Copyright (c) 2011 The Native Client Authors. All rights reserved. |
- * Use of this source code is governed by a BSD-style license that can be |
- * found in the LICENSE file. |
- */ |
- |
- |
-#include "native_client/src/trusted/plugin/browser_interface.h" |
-#include "native_client/src/trusted/plugin/desc_based_handle.h" |
-#include "native_client/src/trusted/plugin/plugin.h" |
- |
- |
-namespace plugin { |
- |
-DescBasedHandle::DescBasedHandle(nacl::DescWrapper* wrapper) |
- : wrapper_(wrapper) { |
- PLUGIN_PRINTF(("DescBasedHandle::DescBasedHandle (this=%p)\n", |
- static_cast<void*>(this))); |
-} |
- |
-DescBasedHandle::~DescBasedHandle() { |
- PLUGIN_PRINTF(("DescBasedHandle::~DescBasedHandle (this=%p)\n", |
- static_cast<void*>(this))); |
-} |
- |
-DescBasedHandle* DescBasedHandle::New(nacl::DescWrapper* wrapper) { |
- PLUGIN_PRINTF(("DescBasedHandle::New (wrapper=%p)\n", |
- static_cast<void*>(wrapper))); |
- |
- if (wrapper == NULL) { |
- return NULL; |
- } |
- return new DescBasedHandle(wrapper); |
-} |
- |
-} // namespace plugin |