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

Unified Diff: content/browser/browser_plugin/browser_plugin_message_filter.cc

Issue 291403002: Remove some RenderProcessHost::IsGuest call sites (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Android build Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/browser_plugin/browser_plugin_message_filter.cc
diff --git a/content/browser/browser_plugin/browser_plugin_message_filter.cc b/content/browser/browser_plugin/browser_plugin_message_filter.cc
index ace1e82014df4b4268bbdbdf4c57b4b23aba5496..e82fb7a031a62f39bee9bdb81918a1e4c3536a22 100644
--- a/content/browser/browser_plugin/browser_plugin_message_filter.cc
+++ b/content/browser/browser_plugin/browser_plugin_message_filter.cc
@@ -19,11 +19,9 @@
namespace content {
-BrowserPluginMessageFilter::BrowserPluginMessageFilter(int render_process_id,
- bool is_guest)
+BrowserPluginMessageFilter::BrowserPluginMessageFilter(int render_process_id)
: BrowserMessageFilter(BrowserPluginMsgStart),
- render_process_id_(render_process_id),
- is_guest_(is_guest) {
+ render_process_id_(render_process_id) {
}
BrowserPluginMessageFilter::~BrowserPluginMessageFilter() {
« no previous file with comments | « content/browser/browser_plugin/browser_plugin_message_filter.h ('k') | content/browser/renderer_host/render_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698