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

Unified Diff: src/trusted/plugin/desc_based_handle.cc

Issue 7799028: Remove src/trusted/plugin (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: fix gyp file for necessary -I Created 9 years, 4 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 | « src/trusted/plugin/desc_based_handle.h ('k') | src/trusted/plugin/dylib_unittest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « src/trusted/plugin/desc_based_handle.h ('k') | src/trusted/plugin/dylib_unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698