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

Unified Diff: remoting/client/plugin/pepper_entrypoints.cc

Issue 1271523003: Remove remoting client plugin from chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android and GN build Created 5 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 | « remoting/client/plugin/pepper_entrypoints.h ('k') | remoting/remoting_all.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/pepper_entrypoints.cc
diff --git a/remoting/client/plugin/pepper_entrypoints.cc b/remoting/client/plugin/pepper_entrypoints.cc
deleted file mode 100644
index f6086c36cf0fe3203b79b8847f2659628066a065..0000000000000000000000000000000000000000
--- a/remoting/client/plugin/pepper_entrypoints.cc
+++ /dev/null
@@ -1,61 +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 "remoting/client/plugin/pepper_entrypoints.h"
-
-#include "base/message_loop/message_loop.h"
-#include "ppapi/c/pp_errors.h"
-#include "ppapi/c/pp_instance.h"
-#include "ppapi/c/pp_module.h"
-#include "ppapi/c/ppb_instance.h"
-#include "ppapi/cpp/instance.h"
-#include "ppapi/cpp/module.h"
-#include "ppapi/cpp/private/internal_module.h"
-#include "remoting/client/plugin/chromoting_instance.h"
-
-namespace remoting {
-
-class ChromotingModule : public pp::Module {
- protected:
- ChromotingInstance* CreateInstance(PP_Instance instance) override {
- return new ChromotingInstance(instance);
- }
-};
-
-// Implementation of Global PPP functions ---------------------------------
-int32_t PPP_InitializeModule(PP_Module module_id,
- PPB_GetInterface get_browser_interface) {
- ChromotingModule* module = new ChromotingModule();
- if (!module->InternalInit(module_id, get_browser_interface)) {
- delete module;
- return PP_ERROR_FAILED;
- }
-
-#if !defined(NDEBUG)
- // Register a global log handler, but only in Debug builds.
- ChromotingInstance::RegisterLogMessageHandler();
-#endif
-
- pp::InternalSetModuleSingleton(module);
- return PP_OK;
-}
-
-void PPP_ShutdownModule() {
- delete pp::Module::Get();
- pp::InternalSetModuleSingleton(nullptr);
-}
-
-const void* PPP_GetInterface(const char* interface_name) {
- if (!pp::Module::Get())
- return nullptr;
- return pp::Module::Get()->GetPluginInterface(interface_name);
-}
-
-const void* PPP_GetBrowserInterface(const char* interface_name) {
- if (!pp::Module::Get())
- return nullptr;
- return pp::Module::Get()->GetBrowserInterface(interface_name);
-}
-
-} // namespace remoting
« no previous file with comments | « remoting/client/plugin/pepper_entrypoints.h ('k') | remoting/remoting_all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698