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

Issue 2901353002: Move blink::PluginData, blink::PluginInfo, blink::MimeTypeInfo to oilpan heap. (Closed)

Created:
3 years, 7 months ago by lfg
Modified:
3 years, 6 months ago
Reviewers:
haraken, tkent, jbroman
CC:
jbroman, blink-reviews, chromium-reviews, haraken, kinuko+watch
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Move blink::PluginData, blink::PluginInfo, blink::MimeTypeInfo to oilpan heap. A future patch will fix the spec compliance of navigator.plugins. BUG=616662 Review-Url: https://codereview.chromium.org/2901353002 Cr-Commit-Position: refs/heads/master@{#475022} Committed: https://chromium.googlesource.com/chromium/src/+/417f8212676dd6c0e0542e89cfef82e67b03dedf

Patch Set 1 #

Total comments: 26

Patch Set 2 : addressing comments #

Patch Set 3 : remove some arguments #

Total comments: 12

Patch Set 4 : nits, remove dead code #

Unified diffs Side-by-side diffs Delta from patch set Stats (+194 lines, -147 lines) Patch
M third_party/WebKit/Source/core/page/Page.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/page/Page.cpp View 3 chunks +10 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/plugins/DOMMimeType.h View 1 2 chunks +5 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/modules/plugins/DOMMimeType.cpp View 1 2 3 3 chunks +8 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/modules/plugins/DOMMimeTypeArray.cpp View 1 1 chunk +5 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/modules/plugins/DOMPlugin.h View 1 2 3 chunks +4 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/modules/plugins/DOMPlugin.cpp View 1 2 3 1 chunk +17 lines, -21 lines 0 comments Download
M third_party/WebKit/Source/modules/plugins/DOMPluginArray.cpp View 1 1 chunk +5 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/plugins/PluginData.h View 1 2 3 2 chunks +60 lines, -29 lines 0 comments Download
M third_party/WebKit/Source/platform/plugins/PluginData.cpp View 1 2 3 1 chunk +63 lines, -30 lines 0 comments Download
M third_party/WebKit/Source/platform/plugins/PluginListBuilder.h View 1 2 chunks +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/plugins/PluginListBuilder.cpp View 1 1 chunk +11 lines, -11 lines 0 comments Download

Messages

Total messages: 30 (20 generated)
lfg
tkent@, can you review? The plan to fix issue 616662 is to have DOM{Plugin,MimeType}Array to ...
3 years, 7 months ago (2017-05-24 22:27:24 UTC) #4
tkent
https://codereview.chromium.org/2901353002/diff/1/third_party/WebKit/Source/modules/plugins/DOMMimeType.h File third_party/WebKit/Source/modules/plugins/DOMMimeType.h (right): https://codereview.chromium.org/2901353002/diff/1/third_party/WebKit/Source/modules/plugins/DOMMimeType.h#newcode43 third_party/WebKit/Source/modules/plugins/DOMMimeType.h:43: const MimeClassInfo* mime_class_info) { Make the argument "const MimeClassInfo&" ...
3 years, 7 months ago (2017-05-25 00:10:32 UTC) #5
lfg
Please, take another look. https://codereview.chromium.org/2901353002/diff/1/third_party/WebKit/Source/modules/plugins/DOMMimeType.h File third_party/WebKit/Source/modules/plugins/DOMMimeType.h (right): https://codereview.chromium.org/2901353002/diff/1/third_party/WebKit/Source/modules/plugins/DOMMimeType.h#newcode43 third_party/WebKit/Source/modules/plugins/DOMMimeType.h:43: const MimeClassInfo* mime_class_info) { On ...
3 years, 7 months ago (2017-05-25 01:42:41 UTC) #9
lfg
https://codereview.chromium.org/2901353002/diff/1/third_party/WebKit/Source/platform/plugins/PluginData.h File third_party/WebKit/Source/platform/plugins/PluginData.h (right): https://codereview.chromium.org/2901353002/diff/1/third_party/WebKit/Source/platform/plugins/PluginData.h#newcode39 third_party/WebKit/Source/platform/plugins/PluginData.h:39: explicit MimeClassInfo(String, String, PluginInfo*); On 2017/05/25 01:42:40, lfg wrote: ...
3 years, 7 months ago (2017-05-25 01:47:39 UTC) #13
tkent
lgtm. https://codereview.chromium.org/2901353002/diff/1/third_party/WebKit/Source/platform/plugins/PluginData.h File third_party/WebKit/Source/platform/plugins/PluginData.h (right): https://codereview.chromium.org/2901353002/diff/1/third_party/WebKit/Source/platform/plugins/PluginData.h#newcode43 third_party/WebKit/Source/platform/plugins/PluginData.h:43: const String& type() const { return type_; } ...
3 years, 7 months ago (2017-05-25 03:17:30 UTC) #14
haraken
LGTM
3 years, 7 months ago (2017-05-25 03:49:50 UTC) #18
jbroman
a couple drive-by nits (lgtm still) https://codereview.chromium.org/2901353002/diff/40001/third_party/WebKit/Source/platform/plugins/PluginData.cpp File third_party/WebKit/Source/platform/plugins/PluginData.cpp (right): https://codereview.chromium.org/2901353002/diff/40001/third_party/WebKit/Source/platform/plugins/PluginData.cpp#newcode34 third_party/WebKit/Source/platform/plugins/PluginData.cpp:34: void PluginData::RefreshBrowserSidePluginCache() { ...
3 years, 7 months ago (2017-05-25 15:27:24 UTC) #19
lfg
https://codereview.chromium.org/2901353002/diff/40001/third_party/WebKit/Source/platform/plugins/PluginData.cpp File third_party/WebKit/Source/platform/plugins/PluginData.cpp (right): https://codereview.chromium.org/2901353002/diff/40001/third_party/WebKit/Source/platform/plugins/PluginData.cpp#newcode34 third_party/WebKit/Source/platform/plugins/PluginData.cpp:34: void PluginData::RefreshBrowserSidePluginCache() { On 2017/05/25 15:27:24, jbroman wrote: > ...
3 years, 7 months ago (2017-05-25 21:34:42 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2901353002/60001
3 years, 6 months ago (2017-05-26 16:03:23 UTC) #27
commit-bot: I haz the power
3 years, 6 months ago (2017-05-26 16:09:58 UTC) #30
Message was sent while issue was closed.
Committed patchset #4 (id:60001) as
https://chromium.googlesource.com/chromium/src/+/417f8212676dd6c0e0542e89cfef...

Powered by Google App Engine
This is Rietveld 408576698