Chromium Code Reviews| Index: third_party/WebKit/Source/modules/webgl/WebGLContextGroup.h |
| diff --git a/third_party/WebKit/Source/modules/webgl/WebGLContextGroup.h b/third_party/WebKit/Source/modules/webgl/WebGLContextGroup.h |
| index c1244fc32b04b5ac0531def6f75cbdcbbe0b48fd..85f6a703ee13bd9ebc06a2405a5974b0d42584dd 100644 |
| --- a/third_party/WebKit/Source/modules/webgl/WebGLContextGroup.h |
| +++ b/third_party/WebKit/Source/modules/webgl/WebGLContextGroup.h |
| @@ -72,7 +72,7 @@ private: |
| // the set of WebGLRenderingContextBase contexts becomes empty. |
| HashSet<WebGLRenderingContextBase*> m_contexts; |
| GC_PLUGIN_IGNORE("http://crbug.com/516610") |
| - HashSet<WebGLSharedObject*> m_groupObjects; |
| + WillBeHeapHashSet<RawPtrWillBeUntracedMember<WebGLSharedObject>> m_groupObjects; |
|
haraken
2015/10/22 02:27:04
This must be WillBePersistentHeapHashSet<RawPtrWil
peria
2015/10/22 02:38:10
Oops, this was my mistake, but I think this should
haraken
2015/10/22 03:55:42
OK. Either way, it's better to have more tests in
|
| }; |
| } // namespace blink |