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

Unified Diff: chrome/browser/plugins/plugin_info_message_filter.h

Issue 2511263003: [HBD] Fix the misleading no-fallback placeholder message in BLOCK mode. (Closed)
Patch Set: merge Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/plugins/plugin_info_message_filter.h
diff --git a/chrome/browser/plugins/plugin_info_message_filter.h b/chrome/browser/plugins/plugin_info_message_filter.h
index 9a0ef340b152ed21e5b8dbef63d6e8a88d787059..3a53837d2d1b13511cebb4cf76604d7f33b65fb1 100644
--- a/chrome/browser/plugins/plugin_info_message_filter.h
+++ b/chrome/browser/plugins/plugin_info_message_filter.h
@@ -14,6 +14,7 @@
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/sequenced_task_runner_helpers.h"
+#include "chrome/browser/plugins/plugin_metadata.h"
#include "chrome/browser/plugins/plugin_prefs.h"
#include "components/content_settings/core/common/content_settings.h"
#include "components/prefs/pref_member.h"
@@ -25,7 +26,6 @@ struct ChromeViewHostMsg_GetPluginInfo_Output;
enum class ChromeViewHostMsg_GetPluginInfo_Status;
class GURL;
class HostContentSettingsMap;
-class PluginMetadata;
class Profile;
namespace base {
@@ -62,9 +62,11 @@ class PluginInfoMessageFilter : public content::BrowserMessageFilter {
~Context();
void DecidePluginStatus(
- const GetPluginInfo_Params& params,
+ const GURL& url,
+ const url::Origin& main_frame_origin,
const content::WebPluginInfo& plugin,
- const PluginMetadata* plugin_metadata,
+ PluginMetadata::SecurityStatus security_status,
+ const std::string& plugin_identifier,
ChromeViewHostMsg_GetPluginInfo_Status* status) const;
bool FindEnabledPlugin(
int render_frame_id,

Powered by Google App Engine
This is Rietveld 408576698