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

Side by Side Diff: chrome/browser/plugins/plugin_utils.h

Issue 2408613002: Replace kPreferHtmlOverPlugins feature checks with PluginUtils::ShouldPreferHtmlOverPlugi… (Closed)
Patch Set: Replace remaining kPreferHtmlOverPlugins feature checks with PluginUtils::ShouldPreferHtmlOverPlugi… Created 4 years, 2 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 unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/plugins/plugin_info_message_filter.cc ('k') | chrome/browser/plugins/plugin_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698