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

Side by Side Diff: content/browser/frame_host/render_frame_message_filter.h

Issue 2156803002: [HBD] Remove PluginCache and reload plugin list when origin changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment Created 4 years, 3 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
« no previous file with comments | « no previous file | content/browser/frame_host/render_frame_message_filter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <set> 10 #include <set>
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 const GURL& url, 113 const GURL& url,
114 const GURL& first_party_for_cookies, 114 const GURL& first_party_for_cookies,
115 const std::string& cookie) override; 115 const std::string& cookie) override;
116 void GetCookies(int render_frame_id, 116 void GetCookies(int render_frame_id,
117 const GURL& url, 117 const GURL& url,
118 const GURL& first_party_for_cookies, 118 const GURL& first_party_for_cookies,
119 const GetCookiesCallback& callback) override; 119 const GetCookiesCallback& callback) override;
120 120
121 121
122 #if defined(ENABLE_PLUGINS) 122 #if defined(ENABLE_PLUGINS)
123 void OnGetPlugins(bool refresh, IPC::Message* reply_msg); 123 void OnGetPlugins(bool refresh,
124 const url::Origin& main_frame_origin,
125 IPC::Message* reply_msg);
124 void GetPluginsCallback(IPC::Message* reply_msg, 126 void GetPluginsCallback(IPC::Message* reply_msg,
127 const url::Origin& main_frame_origin,
125 const std::vector<WebPluginInfo>& plugins); 128 const std::vector<WebPluginInfo>& plugins);
126 void OnGetPluginInfo(int render_frame_id, 129 void OnGetPluginInfo(int render_frame_id,
127 const GURL& url, 130 const GURL& url,
128 const GURL& policy_url, 131 const GURL& policy_url,
129 const std::string& mime_type, 132 const std::string& mime_type,
130 bool* found, 133 bool* found,
131 WebPluginInfo* info, 134 WebPluginInfo* info,
132 std::string* actual_mime_type); 135 std::string* actual_mime_type);
133 void OnOpenChannelToPepperPlugin(const base::FilePath& path, 136 void OnOpenChannelToPepperPlugin(const base::FilePath& path,
134 IPC::Message* reply_msg); 137 IPC::Message* reply_msg);
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 174
172 // Whether this process is used for incognito contents. 175 // Whether this process is used for incognito contents.
173 bool incognito_; 176 bool incognito_;
174 177
175 const int render_process_id_; 178 const int render_process_id_;
176 }; 179 };
177 180
178 } // namespace content 181 } // namespace content
179 182
180 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_ 183 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/render_frame_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698