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

Side by Side Diff: webkit/tools/pepper_test_plugin/pepper_test_plugin.cc

Issue 1073003: Added a test for pepper3d. It ensures that we can successfully load a pepper ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2010 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 #if defined(__GNUC__) && __GNUC__ >= 4
6 #define EXPORT __attribute__((visibility ("default")))
7 #else
8 #define EXPORT
9 #endif
10
11 #include "webkit/glue/plugins/test/plugin_client.h"
12
13 extern "C" {
14 EXPORT NPError API_CALL NP_GetEntryPoints(NPPluginFuncs* pFuncs) {
15 return NPAPIClient::PluginClient::GetEntryPoints(pFuncs);
16 }
17
18 EXPORT NPError API_CALL NP_Initialize(NPNetscapeFuncs* pFuncs) {
19 return NPAPIClient::PluginClient::Initialize(pFuncs);
20 }
21
22 EXPORT NPError API_CALL NP_Shutdown() {
23 return NPAPIClient::PluginClient::Shutdown();
24 }
25 } // extern "C"
OLDNEW
« no previous file with comments | « webkit/tools/pepper_test_plugin/pepper_test_factory.cc ('k') | webkit/tools/test_shell/test_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698