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

Side by Side Diff: third_party/WebKit/Source/modules/webgl/WebGLRenderingContext.cpp

Issue 2010623002: WebGLRenderingContext.cpp doesn't need to include LayoutBox.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (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. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "modules/webgl/WebGLRenderingContext.h" 26 #include "modules/webgl/WebGLRenderingContext.h"
27 27
28 #include "bindings/modules/v8/OffscreenCanvasRenderingContext2DOrWebGLRenderingC ontextOrWebGL2RenderingContext.h" 28 #include "bindings/modules/v8/OffscreenCanvasRenderingContext2DOrWebGLRenderingC ontextOrWebGL2RenderingContext.h"
29 #include "bindings/modules/v8/RenderingContext.h" 29 #include "bindings/modules/v8/RenderingContext.h"
30 #include "core/frame/LocalFrame.h" 30 #include "core/frame/LocalFrame.h"
31 #include "core/frame/Settings.h" 31 #include "core/frame/Settings.h"
32 #include "core/layout/LayoutBox.h"
33 #include "core/loader/FrameLoader.h" 32 #include "core/loader/FrameLoader.h"
34 #include "core/loader/FrameLoaderClient.h" 33 #include "core/loader/FrameLoaderClient.h"
35 #include "gpu/command_buffer/client/gles2_interface.h" 34 #include "gpu/command_buffer/client/gles2_interface.h"
36 #include "modules/webgl/ANGLEInstancedArrays.h" 35 #include "modules/webgl/ANGLEInstancedArrays.h"
37 #include "modules/webgl/EXTBlendMinMax.h" 36 #include "modules/webgl/EXTBlendMinMax.h"
38 #include "modules/webgl/EXTDisjointTimerQuery.h" 37 #include "modules/webgl/EXTDisjointTimerQuery.h"
39 #include "modules/webgl/EXTFragDepth.h" 38 #include "modules/webgl/EXTFragDepth.h"
40 #include "modules/webgl/EXTShaderTextureLOD.h" 39 #include "modules/webgl/EXTShaderTextureLOD.h"
41 #include "modules/webgl/EXTTextureFilterAnisotropic.h" 40 #include "modules/webgl/EXTTextureFilterAnisotropic.h"
42 #include "modules/webgl/EXTsRGB.h" 41 #include "modules/webgl/EXTsRGB.h"
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 visitor->traceWrappers(m_webglDebugShaders); 231 visitor->traceWrappers(m_webglDebugShaders);
233 visitor->traceWrappers(m_webglDrawBuffers); 232 visitor->traceWrappers(m_webglDrawBuffers);
234 visitor->traceWrappers(m_webglCompressedTextureASTC); 233 visitor->traceWrappers(m_webglCompressedTextureASTC);
235 visitor->traceWrappers(m_webglCompressedTextureATC); 234 visitor->traceWrappers(m_webglCompressedTextureATC);
236 visitor->traceWrappers(m_webglCompressedTextureETC1); 235 visitor->traceWrappers(m_webglCompressedTextureETC1);
237 visitor->traceWrappers(m_webglCompressedTexturePVRTC); 236 visitor->traceWrappers(m_webglCompressedTexturePVRTC);
238 visitor->traceWrappers(m_webglCompressedTextureS3TC); 237 visitor->traceWrappers(m_webglCompressedTextureS3TC);
239 visitor->traceWrappers(m_webglDepthTexture); 238 visitor->traceWrappers(m_webglDepthTexture);
240 } 239 }
241 } // namespace blink 240 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698