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

Unified Diff: chrome/browser/extensions/extension_content_settings_apitest.cc

Issue 7648017: Make WebPluginInfo more generic (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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
Index: chrome/browser/extensions/extension_content_settings_apitest.cc
===================================================================
--- chrome/browser/extensions/extension_content_settings_apitest.cc (revision 96613)
+++ chrome/browser/extensions/extension_content_settings_apitest.cc (working copy)
@@ -206,15 +206,15 @@
webkit::npapi::MockPluginList plugin_list(kPluginDefinitions,
arraysize(kPluginDefinitions));
plugin_list.AddPluginToLoad(
- webkit::npapi::WebPluginInfo(ASCIIToUTF16(kFooName),
- FilePath(kFooPath),
- ASCIIToUTF16("1.2.3"),
- ASCIIToUTF16("foo")));
+ webkit::WebPluginInfo(ASCIIToUTF16(kFooName),
+ FilePath(kFooPath),
+ ASCIIToUTF16("1.2.3"),
+ ASCIIToUTF16("foo")));
plugin_list.AddPluginToLoad(
- webkit::npapi::WebPluginInfo(ASCIIToUTF16(kBarName),
- FilePath(kBarPath),
- ASCIIToUTF16("2.3.4"),
- ASCIIToUTF16("bar")));
+ webkit::WebPluginInfo(ASCIIToUTF16(kBarName),
+ FilePath(kBarPath),
+ ASCIIToUTF16("2.3.4"),
+ ASCIIToUTF16("bar")));
GetResourceIdentifiersFunction::SetPluginListForTesting(&plugin_list);
EXPECT_TRUE(RunExtensionTest("content_settings/getresourceidentifiers"))
« no previous file with comments | « chrome/browser/chromeos/gview_request_interceptor_unittest.cc ('k') | chrome/browser/extensions/extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698