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

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

Issue 9390028: Remove browser support for non-PPAPI nexes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 10 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
Index: ppapi/native_client/src/trusted/plugin/desc_based_handle.cc
===================================================================
--- ppapi/native_client/src/trusted/plugin/desc_based_handle.cc (revision 122205)
+++ ppapi/native_client/src/trusted/plugin/desc_based_handle.cc (working copy)
@@ -1,36 +0,0 @@
-/*
- * Copyright (c) 2011 The Chromium 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 | « ppapi/native_client/src/trusted/plugin/desc_based_handle.h ('k') | ppapi/native_client/src/trusted/plugin/method_map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698