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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLContextGroup.h

Issue 1418503005: [Oilpan] Fix wrong usage of HashSet<WebGLSharedObject*> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webgl/WebGLContextGroup.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webgl/WebGLContextGroup.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698