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

Side by Side Diff: webkit/glue/plugins/plugin_stubs.cc

Issue 5998002: Revert "Move the NPAPI files from webkit/glue/plugins to webkit/plugins/npapi" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW
« no previous file with comments | « webkit/glue/plugins/plugin_string_stream.cc ('k') | webkit/glue/plugins/plugin_web_event_converter_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698