Index: chrome/browser/plugin_exceptions_table_model_unittest.cc |
diff --git a/chrome/browser/plugin_exceptions_table_model_unittest.cc b/chrome/browser/plugin_exceptions_table_model_unittest.cc |
index 6e5a19c205fba92d573e8e1b32e98e791145a81d..8887118f3ad98efb16c65663d45a4e4a989762d2 100644 |
--- a/chrome/browser/plugin_exceptions_table_model_unittest.cc |
+++ b/chrome/browser/plugin_exceptions_table_model_unittest.cc |
@@ -88,7 +88,8 @@ class PluginExceptionsTableModelTest : public testing::Test { |
webkit::npapi::WebPluginInfo foo_plugin; |
foo_plugin.path = FilePath(FILE_PATH_LITERAL("a-foo")); |
foo_plugin.name = ASCIIToUTF16("FooPlugin"); |
- foo_plugin.enabled = true; |
+ foo_plugin.enabled = |
+ webkit::npapi::WebPluginInfo::USER_ENABLED_POLICY_UNMANAGED; |
scoped_ptr<webkit::npapi::PluginGroup> foo_group( |
webkit::npapi::PluginGroup::FromWebPluginInfo(foo_plugin)); |
plugins.push_back(*foo_group); |
@@ -96,7 +97,8 @@ class PluginExceptionsTableModelTest : public testing::Test { |
webkit::npapi::WebPluginInfo bar_plugin; |
bar_plugin.path = FilePath(FILE_PATH_LITERAL("b-bar")); |
bar_plugin.name = ASCIIToUTF16("BarPlugin"); |
- bar_plugin.enabled = true; |
+ bar_plugin.enabled = |
+ webkit::npapi::WebPluginInfo::USER_ENABLED_POLICY_UNMANAGED; |
scoped_ptr<webkit::npapi::PluginGroup> bar_group( |
webkit::npapi::PluginGroup::FromWebPluginInfo(bar_plugin)); |
plugins.push_back(*bar_group); |