Index: chrome/browser/content_settings/tab_specific_content_settings.h |
diff --git a/chrome/browser/content_settings/tab_specific_content_settings.h b/chrome/browser/content_settings/tab_specific_content_settings.h |
index 2a6705b1473ab2a96b5aa63e38b6e0c4196d6117..40f9679936a1d4c20c543ca4da07674d64c225c7 100644 |
--- a/chrome/browser/content_settings/tab_specific_content_settings.h |
+++ b/chrome/browser/content_settings/tab_specific_content_settings.h |
@@ -180,7 +180,9 @@ class TabSpecificContentSettings |
bool IsContentAllowed(ContentSettingsType content_type) const; |
// Returns the names of plugins that have been blocked for this tab. |
- const base::string16 GetBlockedPluginNames() const; |
+ std::vector<base::string16> blocked_plugin_names() const { |
Bernhard Bauer
2015/03/23 22:30:46
Return as const-ref?
meacer
2015/03/23 23:44:46
Done.
|
+ return blocked_plugin_names_; |
+ } |
const GURL& media_stream_access_origin() const { |
return media_stream_access_origin_; |