Index: chrome/browser/ui/webui/plugins/plugins_handler.cc |
diff --git a/chrome/browser/ui/webui/plugins/plugins_handler.cc b/chrome/browser/ui/webui/plugins/plugins_handler.cc |
index dccfbfcc22aaa49c66b21d3e7d37586d6f276085..de67335caab980c86c1575301f274bfcc8993e97 100644 |
--- a/chrome/browser/ui/webui/plugins/plugins_handler.cc |
+++ b/chrome/browser/ui/webui/plugins/plugins_handler.cc |
@@ -171,7 +171,7 @@ void PluginsPageHandler::SetPluginAlwaysAllowed(const mojo::String& plugin, |
// whitelisted by the user from automatically whitelisted ones. |
DictionaryPrefUpdate update(profile->GetPrefs(), |
prefs::kContentSettingsPluginWhitelist); |
- update->SetBoolean(plugin, allowed); |
+ update->SetBoolean(plugin.get(), allowed); |
dcheng
2016/08/25 07:39:34
mojo::String will go away eventually, I guess.
|
} |
void PluginsPageHandler::GetPluginsData( |