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

Unified Diff: content/browser/plugin_loader_posix_unittest.cc

Issue 9019004: Rename PluginService to PluginServiceImpl. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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 | « content/browser/plugin_loader_posix.cc ('k') | content/browser/plugin_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/plugin_loader_posix_unittest.cc
===================================================================
--- content/browser/plugin_loader_posix_unittest.cc (revision 115278)
+++ content/browser/plugin_loader_posix_unittest.cc (working copy)
@@ -74,7 +74,7 @@
}
virtual void SetUp() OVERRIDE {
- PluginService::GetInstance()->Init();
+ PluginServiceImpl::GetInstance()->Init();
}
MessageLoop* message_loop() { return &message_loop_; }
@@ -104,7 +104,7 @@
TEST_F(PluginLoaderPosixTest, QueueRequests) {
int did_callback = 0;
- PluginService::GetPluginsCallback callback =
+ content::PluginService::GetPluginsCallback callback =
base::Bind(&VerifyCallback, base::Unretained(&did_callback));
EXPECT_EQ(0u, plugin_loader()->number_of_pending_callbacks());
@@ -131,7 +131,7 @@
TEST_F(PluginLoaderPosixTest, ThreeSuccessfulLoads) {
int did_callback = 0;
- PluginService::GetPluginsCallback callback =
+ content::PluginService::GetPluginsCallback callback =
base::Bind(&VerifyCallback, base::Unretained(&did_callback));
plugin_loader()->LoadPlugins(message_loop()->message_loop_proxy(), callback);
@@ -172,7 +172,7 @@
TEST_F(PluginLoaderPosixTest, TwoFailures) {
int did_callback = 0;
- PluginService::GetPluginsCallback callback =
+ content::PluginService::GetPluginsCallback callback =
base::Bind(&VerifyCallback, base::Unretained(&did_callback));
plugin_loader()->LoadPlugins(message_loop()->message_loop_proxy(), callback);
@@ -211,7 +211,7 @@
TEST_F(PluginLoaderPosixTest, CrashedProcess) {
int did_callback = 0;
- PluginService::GetPluginsCallback callback =
+ content::PluginService::GetPluginsCallback callback =
base::Bind(&VerifyCallback, base::Unretained(&did_callback));
plugin_loader()->LoadPlugins(message_loop()->message_loop_proxy(), callback);
@@ -244,7 +244,7 @@
TEST_F(PluginLoaderPosixTest, InternalPlugin) {
int did_callback = 0;
- PluginService::GetPluginsCallback callback =
+ content::PluginService::GetPluginsCallback callback =
base::Bind(&VerifyCallback, base::Unretained(&did_callback));
plugin_loader()->LoadPlugins(message_loop()->message_loop_proxy(), callback);
@@ -293,7 +293,7 @@
TEST_F(PluginLoaderPosixTest, AllCrashed) {
int did_callback = 0;
- PluginService::GetPluginsCallback callback =
+ content::PluginService::GetPluginsCallback callback =
base::Bind(&VerifyCallback, base::Unretained(&did_callback));
plugin_loader()->LoadPlugins(message_loop()->message_loop_proxy(), callback);
« no previous file with comments | « content/browser/plugin_loader_posix.cc ('k') | content/browser/plugin_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698