| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PLUGINS_PLUGIN_UTILS_H_ | 5 #ifndef CHROME_BROWSER_PLUGINS_PLUGIN_UTILS_H_ |
| 6 #define CHROME_BROWSER_PLUGINS_PLUGIN_UTILS_H_ | 6 #define CHROME_BROWSER_PLUGINS_PLUGIN_UTILS_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "components/content_settings/core/common/content_settings.h" | 9 #include "components/content_settings/core/common/content_settings.h" |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 bool* is_managed); | 34 bool* is_managed); |
| 35 | 35 |
| 36 // Returns the content setting for Flash. This is the same as | 36 // Returns the content setting for Flash. This is the same as |
| 37 // |GetPluginContentSetting| but flash-specific. | 37 // |GetPluginContentSetting| but flash-specific. |
| 38 static ContentSetting GetFlashPluginContentSetting( | 38 static ContentSetting GetFlashPluginContentSetting( |
| 39 const HostContentSettingsMap* host_content_settings_map, | 39 const HostContentSettingsMap* host_content_settings_map, |
| 40 const url::Origin& main_frame_origin, | 40 const url::Origin& main_frame_origin, |
| 41 const GURL& plugin_url, | 41 const GURL& plugin_url, |
| 42 bool* is_managed); | 42 bool* is_managed); |
| 43 | 43 |
| 44 // Returns true if HTML content should be prefered, by hiding Flash from the |
| 45 // plugin list. Use this instead of |
| 46 // base::FeatureList::IsEnabled(features::kPreferHtmlOverPlugins). |
| 47 static bool ShouldPreferHtmlOverPlugins( |
| 48 const HostContentSettingsMap* host_content_settings_map); |
| 49 |
| 44 private: | 50 private: |
| 45 DISALLOW_IMPLICIT_CONSTRUCTORS(PluginUtils); | 51 DISALLOW_IMPLICIT_CONSTRUCTORS(PluginUtils); |
| 46 }; | 52 }; |
| 47 | 53 |
| 48 #endif // CHROME_BROWSER_PLUGINS_PLUGIN_UTILS_H_ | 54 #endif // CHROME_BROWSER_PLUGINS_PLUGIN_UTILS_H_ |
| OLD | NEW |