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

Issue 2967007: Disable outdated plugins, block non-sandboxed plugins. (Closed)

Created:
10 years, 5 months ago by Bernhard Bauer
Modified:
9 years, 7 months ago
CC:
chromium-reviews, jam, brettw-cc_chromium.org, darin-cc_chromium.org, ben+cc_chromium.org
Visibility:
Public.

Description

Add command line flags to disable outdated plugins and block non-sandboxed plugins. BUG=47730, 47731 TEST=Run Chrome with --disable-outdated-plugins --block-nonsandboxed-plugins

Patch Set 1 #

Patch Set 2 : cleanup #

Total comments: 8

Patch Set 3 : feedback #

Patch Set 4 : sync #

Total comments: 6

Patch Set 5 : Nits were picked. #

Total comments: 6

Patch Set 6 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+555 lines, -99 lines) Patch
M chrome/app/generated_resources.grd View 1 2 3 4 4 chunks +17 lines, -5 lines 0 comments Download
A chrome/browser/blocked_plugin_manager.h View 1 2 1 chunk +37 lines, -0 lines 0 comments Download
A chrome/browser/blocked_plugin_manager.cc View 1 2 1 chunk +57 lines, -0 lines 0 comments Download
M chrome/browser/plugin_service.h View 2 chunks +3 lines, -11 lines 0 comments Download
M chrome/browser/plugin_service.cc View 1 2 3 4 5 4 chunks +14 lines, -21 lines 0 comments Download
M chrome/browser/plugin_updater.h View 1 2 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/browser/plugin_updater.cc View 1 2 3 4 3 chunks +18 lines, -1 line 0 comments Download
M chrome/browser/renderer_host/browser_render_process_host.cc View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/renderer_host/render_view_host.h View 1 2 3 4 2 chunks +6 lines, -0 lines 0 comments Download
M chrome/browser/renderer_host/render_view_host.cc View 1 2 3 4 5 chunks +35 lines, -0 lines 0 comments Download
M chrome/browser/renderer_host/render_view_host_delegate.h View 1 2 3 4 3 chunks +10 lines, -0 lines 0 comments Download
M chrome/browser/renderer_host/render_view_host_delegate.cc View 1 2 3 4 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/browser/renderer_host/resource_message_filter.h View 1 2 3 4 5 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/renderer_host/resource_message_filter.cc View 1 2 3 4 5 2 chunks +15 lines, -6 lines 0 comments Download
M chrome/browser/tab_contents/tab_contents.h View 1 2 3 4 4 chunks +6 lines, -0 lines 0 comments Download
M chrome/browser/tab_contents/tab_contents.cc View 1 2 3 4 5 4 chunks +74 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/common/chrome_switches.h View 1 2 3 4 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/common/chrome_switches.cc View 1 2 3 4 2 chunks +6 lines, -0 lines 0 comments Download
M chrome/common/notification_type.h View 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/common/plugin_group.h View 3 4 2 chunks +9 lines, -3 lines 0 comments Download
M chrome/common/render_messages.h View 1 2 3 4 3 chunks +5 lines, -1 line 0 comments Download
M chrome/common/render_messages_internal.h View 1 2 3 4 5 3 chunks +21 lines, -5 lines 0 comments Download
M chrome/renderer/blocked_plugin.h View 1 2 3 4 2 chunks +31 lines, -5 lines 0 comments Download
M chrome/renderer/blocked_plugin.cc View 1 2 3 4 5 3 chunks +50 lines, -6 lines 0 comments Download
M chrome/renderer/render_view.h View 1 2 3 4 5 5 chunks +13 lines, -6 lines 0 comments Download
M chrome/renderer/render_view.cc View 1 2 3 4 5 5 chunks +87 lines, -25 lines 0 comments Download
M chrome/renderer/resources/blocked_plugin.html View 2 chunks +18 lines, -2 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
Bernhard Bauer
Could you review this while I wait for the final LGTM on the click-to-play CL? ...
10 years, 5 months ago (2010-07-14 13:28:56 UTC) #1
Pam (message me for reviews)
This looks OK to me apart from the minor stuff below, but I'm not an ...
10 years, 5 months ago (2010-07-15 16:45:09 UTC) #2
Bernhard Bauer
All done (I hope).
10 years, 5 months ago (2010-07-16 16:48:24 UTC) #3
Pam (message me for reviews)
LGTM with below nits picked. Please still get someone who knows plug-ins better to review ...
10 years, 5 months ago (2010-07-19 15:16:34 UTC) #4
Bernhard Bauer
On 2010/07/19 15:16:34, Pam wrote: > LGTM with below nits picked. Please still get someone ...
10 years, 5 months ago (2010-07-19 15:41:55 UTC) #5
Pam (message me for reviews)
Stuart, do you feel comfortable reviewing this, or can you suggest someone? - Pam
10 years, 5 months ago (2010-07-19 15:51:17 UTC) #6
Bernhard Bauer
On 2010/07/19 15:51:17, Pam wrote: > Stuart, do you feel comfortable reviewing this, or can ...
10 years, 5 months ago (2010-07-20 08:40:44 UTC) #7
stuartmorgan
Please update the CL description; it doesn't do the things in the title, it just ...
10 years, 5 months ago (2010-07-20 17:17:19 UTC) #8
darin (slow to review)
http://codereview.chromium.org/2967007/diff/50001/51014 File chrome/browser/tab_contents/tab_contents.cc (right): http://codereview.chromium.org/2967007/diff/50001/51014#newcode1961 chrome/browser/tab_contents/tab_contents.cc:1961: class DisabledPluginInfoBar : public ConfirmInfoBarDelegate { nit: please move ...
10 years, 5 months ago (2010-07-20 17:43:44 UTC) #9
Bernhard Bauer
On 2010/07/20 17:17:19, stuartmorgan wrote: > Please update the CL description; it doesn't do the ...
10 years, 5 months ago (2010-07-26 17:39:32 UTC) #10
stuartmorgan
On 2010/07/26 17:39:32, Bernhard Bauer wrote: > It's indented four spaces more than the previous ...
10 years, 5 months ago (2010-07-26 18:04:12 UTC) #11
Pam (message me for reviews)
On 2010/07/26 18:04:12, stuartmorgan wrote: > There's no style rule specifically covering continuation within a ...
10 years, 5 months ago (2010-07-26 21:21:13 UTC) #12
Pam (message me for reviews)
10 years, 4 months ago (2010-08-04 18:15:07 UTC) #13
If this has been committed, could you close the issue please?

- Pam

Powered by Google App Engine
This is Rietveld 408576698