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

Side by Side Diff: webkit/tools/pepper_test_plugin/pepper_test_factory.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 #include "webkit/glue/plugins/test/plugin_test_factory.h"
6
7 #include "webkit/tools/pepper_test_plugin/pepper_3d_test.h"
8
9 namespace NPAPIClient {
10
11 PluginTest* CreatePluginTest(const std::string& test_name,
12 NPP instance,
13 NPNetscapeFuncs* host_functions) {
14 PluginTest* new_test = NULL;
15
16 if (test_name == "pepper_3d") {
17 new_test = new Pepper3DTest(instance, host_functions);
18 }
19
20 return new_test;
21 }
22
23 } // namespace NPAPIClient
OLDNEW
« no previous file with comments | « webkit/tools/pepper_test_plugin/pepper_3d_test.cc ('k') | webkit/tools/pepper_test_plugin/pepper_test_plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698