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

Unified Diff: chrome/test/ui/npapi_test_helper.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/ui/npapi_test_helper.h ('k') | chrome/test/ui/npapi_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/ui/npapi_test_helper.cc
===================================================================
--- chrome/test/ui/npapi_test_helper.cc (revision 42644)
+++ chrome/test/ui/npapi_test_helper.cc (working copy)
@@ -17,16 +17,18 @@
#if defined(OS_WIN)
static const char kNpapiTestPluginName[] = "npapi_test_plugin.dll";
-static const char kPepperTestPluginName[] = "pepper_test_plugin.dll";
#elif defined(OS_MACOSX)
static const char kNpapiTestPluginName[] = "npapi_test_plugin.plugin";
-static const char kPepperTestPluginName[] = "PepperTestPlugin.plugin";
static const char kLayoutPluginName[] = "TestNetscapePlugIn.plugin";
#elif defined(OS_LINUX)
static const char kNpapiTestPluginName[] = "libnpapi_test_plugin.so";
-static const char kPepperTestPluginName[] = "libpepper_test_plugin.so";
#endif
+namespace npapi_test {
+const char kTestCompleteCookie[] = "status";
+const char kTestCompleteSuccess[] = "OK";
+} // namespace npapi_test.
+
NPAPITesterBase::NPAPITesterBase(const std::string& test_plugin_name)
: test_plugin_name_(test_plugin_name) {
}
@@ -105,12 +107,3 @@
launch_arguments_.AppendSwitch(switches::kIncognito);
NPAPITester::SetUp();
}
-
-PepperTester::PepperTester() : NPAPITesterBase(kPepperTestPluginName) {
-}
-
-void PepperTester::SetUp() {
- // TODO(alokp): Add command-line arguments
- // --no-sandbox --internal-pepper --enable-gpu-plugin
- NPAPITesterBase::SetUp();
-}
« no previous file with comments | « chrome/test/ui/npapi_test_helper.h ('k') | chrome/test/ui/npapi_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698