| OLD | NEW |
| 1 |
| 1 /* | 2 /* |
| 2 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Google Inc. All Rights Reserved. |
| 3 * | 4 * |
| 4 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 6 * are met: | 7 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 11 * notice, this list of conditions and the following disclaimer in the |
| 11 * documentation and/or other materials provided with the distribution. | 12 * documentation and/or other materials provided with the distribution. |
| 12 * | 13 * |
| 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | 14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
| 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
| 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 * |
| 24 */ | 26 */ |
| 25 | 27 |
| 26 #ifndef WebGLContextObject_h | 28 #ifndef SimpleLifecycleContext_h |
| 27 #define WebGLContextObject_h | 29 #define SimpleLifecycleContext_h |
| 28 | 30 |
| 29 #include "core/html/canvas/WebGLObject.h" | 31 #include "core/dom/SimpleLifecycleObserver.h" |
| 32 #include "wtf/HashSet.h" |
| 33 #include "wtf/OwnPtr.h" |
| 34 #include "wtf/PassOwnPtr.h" |
| 30 | 35 |
| 31 namespace WebCore { | 36 namespace WebCore { |
| 32 | 37 |
| 33 class GraphicsContext3D; | 38 class SimpleLifecycleNotifier; |
| 34 class WebGLRenderingContext; | 39 class SimpleLifecycleObserver; |
| 35 | 40 |
| 36 // WebGLContextObject the base class for objects that are owned by a specific | 41 class SimpleLifecycleContext { |
| 37 // WebGLRenderingContext. | |
| 38 class WebGLContextObject : public WebGLObject { | |
| 39 public: | 42 public: |
| 40 virtual ~WebGLContextObject(); | 43 SimpleLifecycleContext(); |
| 44 virtual ~SimpleLifecycleContext(); |
| 41 | 45 |
| 42 WebGLRenderingContext* context() const { return m_context; } | 46 virtual bool isContextThread() const { return true; } |
| 43 | 47 |
| 44 virtual bool validate(const WebGLContextGroup*, const WebGLRenderingContext*
context) const | 48 // Called from the constructor of observers. |
| 45 { | 49 void wasObservedBy(SimpleLifecycleObserver*, SimpleLifecycleObserver::Type); |
| 46 return context == m_context; | |
| 47 } | |
| 48 | 50 |
| 49 void detachContext(); | 51 // Called from the destructor of observers. |
| 52 void wasUnobservedBy(SimpleLifecycleObserver*, SimpleLifecycleObserver::Type
); |
| 50 | 53 |
| 51 protected: | 54 protected: |
| 52 WebGLContextObject(WebGLRenderingContext*); | 55 SimpleLifecycleNotifier* lifecycleNotifier(); |
| 53 | |
| 54 virtual bool hasGroupOrContext() const | |
| 55 { | |
| 56 return m_context; | |
| 57 } | |
| 58 | |
| 59 virtual GraphicsContext3D* getAGraphicsContext3D() const; | |
| 60 | 56 |
| 61 private: | 57 private: |
| 62 WebGLRenderingContext* m_context; | 58 virtual PassOwnPtr<SimpleLifecycleNotifier> createLifecycleNotifier(); |
| 59 |
| 60 OwnPtr<SimpleLifecycleNotifier> m_lifecycleNotifier; |
| 63 }; | 61 }; |
| 64 | 62 |
| 65 } // namespace WebCore | 63 } // namespace WebCore |
| 66 | 64 |
| 67 #endif // WebGLContextObject_h | 65 #endif // SimpleLifecycleContext_h |
| OLD | NEW |