| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #include "wtf/text/WTFString.h" | 45 #include "wtf/text/WTFString.h" |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 class WebLayer; | 48 class WebLayer; |
| 49 } | 49 } |
| 50 | 50 |
| 51 namespace WebCore { | 51 namespace WebCore { |
| 52 | 52 |
| 53 class ANGLEInstancedArrays; | 53 class ANGLEInstancedArrays; |
| 54 class EXTFragDepth; | 54 class EXTFragDepth; |
| 55 class EXTShaderTextureLOD; |
| 55 class EXTTextureFilterAnisotropic; | 56 class EXTTextureFilterAnisotropic; |
| 56 class ExceptionState; | 57 class ExceptionState; |
| 57 class HTMLImageElement; | 58 class HTMLImageElement; |
| 58 class HTMLVideoElement; | 59 class HTMLVideoElement; |
| 59 class ImageBuffer; | 60 class ImageBuffer; |
| 60 class ImageData; | 61 class ImageData; |
| 61 class IntSize; | 62 class IntSize; |
| 62 class OESElementIndexUint; | 63 class OESElementIndexUint; |
| 63 class OESStandardDerivatives; | 64 class OESStandardDerivatives; |
| 64 class OESTextureFloat; | 65 class OESTextureFloat; |
| (...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 // If the vector is empty, return the maximum allowed active context number. | 914 // If the vector is empty, return the maximum allowed active context number. |
| 914 static size_t oldestContextIndex(); | 915 static size_t oldestContextIndex(); |
| 915 static IntSize oldestContextSize(); | 916 static IntSize oldestContextSize(); |
| 916 }; | 917 }; |
| 917 | 918 |
| 918 DEFINE_TYPE_CASTS(WebGLRenderingContextBase, CanvasRenderingContext, context, co
ntext->is3d(), context.is3d()); | 919 DEFINE_TYPE_CASTS(WebGLRenderingContextBase, CanvasRenderingContext, context, co
ntext->is3d(), context.is3d()); |
| 919 | 920 |
| 920 } // namespace WebCore | 921 } // namespace WebCore |
| 921 | 922 |
| 922 #endif // WebGLRenderingContextBase_h | 923 #endif // WebGLRenderingContextBase_h |
| OLD | NEW |