Chromium Code Reviews| Index: third_party/WebKit/Source/platform/plugins/PluginListBuilder.h |
| diff --git a/third_party/WebKit/Source/platform/plugins/PluginListBuilder.h b/third_party/WebKit/Source/platform/plugins/PluginListBuilder.h |
| index 0e71f79aeeab62e15f876887742a8748e2c09160..3e94d1ab025a38f07ea8f64b31495dd6df0503a4 100644 |
| --- a/third_party/WebKit/Source/platform/plugins/PluginListBuilder.h |
| +++ b/third_party/WebKit/Source/platform/plugins/PluginListBuilder.h |
| @@ -42,7 +42,8 @@ class PluginListBuilder final : public WebPluginListBuilder { |
| DISALLOW_NEW(); |
| public: |
| - PluginListBuilder(Vector<PluginInfo>* results) : results_(results) {} |
| + PluginListBuilder(HeapVector<Member<PluginInfo>>* results) |
| + : results_(results) {} |
| // WebPluginListBuilder methods: |
| void AddPlugin(const WebString& name, |
| @@ -53,7 +54,7 @@ class PluginListBuilder final : public WebPluginListBuilder { |
| void AddFileExtensionToLastMediaType(const WebString& extension) override; |
| private: |
| - Vector<PluginInfo>* results_; |
| + HeapVector<Member<PluginInfo>>* results_; |
|
tkent
2017/05/25 00:10:32
This should be Member<HeapVector<Member<PluginInfo
lfg
2017/05/25 01:42:40
Done.
|
| }; |
| } // namespace blink |