| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #define WebGLContextGroup_h | 27 #define WebGLContextGroup_h |
| 28 | 28 |
| 29 #include "bindings/core/v8/ScriptWrappable.h" | 29 #include "bindings/core/v8/ScriptWrappable.h" |
| 30 #include "modules/webgl/WebGLRenderingContextBase.h" | 30 #include "modules/webgl/WebGLRenderingContextBase.h" |
| 31 #include "wtf/HashSet.h" | 31 #include "wtf/HashSet.h" |
| 32 #include "wtf/PassRefPtr.h" | 32 #include "wtf/PassRefPtr.h" |
| 33 #include "wtf/RefCounted.h" | 33 #include "wtf/RefCounted.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 typedef int ExceptionCode; | |
| 38 | |
| 39 class WebGLContextGroup final : public GarbageCollected<WebGLContextGroup>, | 37 class WebGLContextGroup final : public GarbageCollected<WebGLContextGroup>, |
| 40 public TraceWrapperBase { | 38 public TraceWrapperBase { |
| 41 WTF_MAKE_NONCOPYABLE(WebGLContextGroup); | 39 WTF_MAKE_NONCOPYABLE(WebGLContextGroup); |
| 42 | 40 |
| 43 public: | 41 public: |
| 44 WebGLContextGroup(); | 42 WebGLContextGroup(); |
| 45 | 43 |
| 46 void addContext(WebGLRenderingContextBase*); | 44 void addContext(WebGLRenderingContextBase*); |
| 47 | 45 |
| 48 // There's no point in having a removeContext method any more now that | 46 // There's no point in having a removeContext method any more now that |
| (...skipping 22 matching lines...) Expand all Loading... |
| 71 friend class WebGLObject; | 69 friend class WebGLObject; |
| 72 | 70 |
| 73 uint32_t m_numberOfContextLosses; | 71 uint32_t m_numberOfContextLosses; |
| 74 | 72 |
| 75 HeapHashSet<TraceWrapperMember<WebGLRenderingContextBase>> m_contexts; | 73 HeapHashSet<TraceWrapperMember<WebGLRenderingContextBase>> m_contexts; |
| 76 }; | 74 }; |
| 77 | 75 |
| 78 } // namespace blink | 76 } // namespace blink |
| 79 | 77 |
| 80 #endif // WebGLContextGroup_h | 78 #endif // WebGLContextGroup_h |
| OLD | NEW |