| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 #include "remoting/client/pepper/pepper_plugin.h" | |
| 8 | |
| 9 namespace pepper { | |
| 10 | |
| 11 PepperPlugin::PepperPlugin(NPNetscapeFuncs* browser_funcs, NPP instance) | |
| 12 : browser_funcs_(browser_funcs), | |
| 13 extensions_(NULL), | |
| 14 instance_(instance) { | |
| 15 browser_funcs_->getvalue(instance_, NPNVPepperExtensions, | |
| 16 static_cast<void*>(&extensions_)); | |
| 17 } | |
| 18 | |
| 19 PepperPlugin::~PepperPlugin() { | |
| 20 } | |
| 21 | |
| 22 } // namespace pepper | |
| OLD | NEW |