| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // This file stubs out some functions needed to make the linker happy | |
| 6 // without linking in all the plugin code. It should be removed once | |
| 7 // we have plugins working on all platforms. | |
| 8 | |
| 9 // TODO(port): remove this file. | |
| 10 | |
| 11 #include "base/logging.h" | |
| 12 #include "webkit/glue/plugins/plugin_instance.h" | |
| 13 #include "webkit/glue/plugins/plugin_stream.h" | |
| 14 | |
| 15 namespace NPAPI { | |
| 16 | |
| 17 PluginStream::~PluginStream() { | |
| 18 NOTIMPLEMENTED(); | |
| 19 } | |
| 20 | |
| 21 bool PluginStream::Close(NPReason reason) { | |
| 22 NOTIMPLEMENTED(); | |
| 23 return false; | |
| 24 } | |
| 25 | |
| 26 void PluginInstance::NPP_StreamAsFile(NPStream*, const char*) { | |
| 27 NOTIMPLEMENTED(); | |
| 28 } | |
| 29 | |
| 30 } // namespace NPAPI | |
| OLD | NEW |