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

Unified Diff: chrome/browser/chromeos/gview_request_interceptor_unittest.cc

Issue 9006036: Create an API around PluginService and use it from Chrome. (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
Index: chrome/browser/chromeos/gview_request_interceptor_unittest.cc
===================================================================
--- chrome/browser/chromeos/gview_request_interceptor_unittest.cc (revision 115169)
+++ chrome/browser/chromeos/gview_request_interceptor_unittest.cc (working copy)
@@ -107,7 +107,7 @@
ChromePluginServiceFilter* filter =
ChromePluginServiceFilter::GetInstance();
filter->RegisterResourceContext(plugin_prefs_, resource_context);
- PluginService::GetInstance()->set_filter(filter);
+ PluginService::GetInstance()->SetFilter(filter);
ASSERT_TRUE(PathService::Get(chrome::FILE_PDF_PLUGIN, &pdf_path_));
@@ -127,7 +127,7 @@
ChromePluginServiceFilter* filter =
ChromePluginServiceFilter::GetInstance();
filter->UnregisterResourceContext(resource_context);
- PluginService::GetInstance()->set_filter(NULL);
+ PluginService::GetInstance()->SetFilter(NULL);
}
void RegisterPDFPlugin() {

Powered by Google App Engine
This is Rietveld 408576698