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

Unified Diff: webkit/plugins/npapi/plugin_lib_unittest.cc

Issue 12286020: Replace FilePath with base::FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « webkit/plugins/npapi/plugin_instance.h ('k') | webkit/tools/test_shell/simple_dom_storage_system.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/plugin_lib_unittest.cc
diff --git a/webkit/plugins/npapi/plugin_lib_unittest.cc b/webkit/plugins/npapi/plugin_lib_unittest.cc
index a21e1f68caec722fa74cbfae34eb55ff7c8025ef..5d6c803364618f3565a3eaf03968790ecc7bd613 100644
--- a/webkit/plugins/npapi/plugin_lib_unittest.cc
+++ b/webkit/plugins/npapi/plugin_lib_unittest.cc
@@ -27,7 +27,7 @@ class PluginLibTest : public PluginLib {
TEST(PluginLibLoading, UnloadAllPlugins) {
// For the creation of the g_loaded_libs global variable.
ASSERT_EQ(static_cast<PluginLibTest*>(NULL),
- PluginLibTest::CreatePluginLib(FilePath()));
+ PluginLibTest::CreatePluginLib(base::FilePath()));
// Try with a single plugin lib.
scoped_refptr<PluginLibTest> plugin_lib1(new PluginLibTest());
@@ -35,7 +35,7 @@ TEST(PluginLibLoading, UnloadAllPlugins) {
// Need to create it again, it should have been destroyed above.
ASSERT_EQ(static_cast<PluginLibTest*>(NULL),
- PluginLibTest::CreatePluginLib(FilePath()));
+ PluginLibTest::CreatePluginLib(base::FilePath()));
// Try with two plugin libs.
plugin_lib1 = new PluginLibTest();
@@ -44,7 +44,7 @@ TEST(PluginLibLoading, UnloadAllPlugins) {
// Need to create it again, it should have been destroyed above.
ASSERT_EQ(static_cast<PluginLibTest*>(NULL),
- PluginLibTest::CreatePluginLib(FilePath()));
+ PluginLibTest::CreatePluginLib(base::FilePath()));
// Now try to manually Unload one and then UnloadAll.
plugin_lib1 = new PluginLibTest();
@@ -54,7 +54,7 @@ TEST(PluginLibLoading, UnloadAllPlugins) {
// Need to create it again, it should have been destroyed above.
ASSERT_EQ(static_cast<PluginLibTest*>(NULL),
- PluginLibTest::CreatePluginLib(FilePath()));
+ PluginLibTest::CreatePluginLib(base::FilePath()));
// Now try to manually Unload the only one and then UnloadAll.
plugin_lib1 = new PluginLibTest();
« no previous file with comments | « webkit/plugins/npapi/plugin_instance.h ('k') | webkit/tools/test_shell/simple_dom_storage_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698