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

Side by Side Diff: webkit/default_plugin/default_plugin.cc

Issue 2795003: Delete default plugin external npapi entry points. (Closed)
Patch Set: Created 10 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | webkit/default_plugin/default_plugin.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "webkit/default_plugin/plugin_main.h"
6
7 extern "C" {
8 NPError API_CALL NP_GetEntryPoints(NPPluginFuncs* funcs) {
9 return default_plugin::NP_GetEntryPoints(funcs);
10 }
11
12 NPError API_CALL NP_Initialize(NPNetscapeFuncs* funcs) {
13 return default_plugin::NP_Initialize(funcs);
14 }
15
16 NPError API_CALL NP_Shutdown() {
17 return default_plugin::NP_Shutdown();
18 }
19 } // extern "C"
OLDNEW
« no previous file with comments | « no previous file | webkit/default_plugin/default_plugin.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698