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

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

Issue 1820083005: Remove platform/NotImplemented.*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
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/WebGLFramebuffer.h" 26 #include "modules/webgl/WebGLFramebuffer.h"
27 27
28 #include "gpu/command_buffer/client/gles2_interface.h" 28 #include "gpu/command_buffer/client/gles2_interface.h"
29 #include "modules/webgl/WebGLRenderbuffer.h" 29 #include "modules/webgl/WebGLRenderbuffer.h"
30 #include "modules/webgl/WebGLRenderingContextBase.h" 30 #include "modules/webgl/WebGLRenderingContextBase.h"
31 #include "modules/webgl/WebGLTexture.h" 31 #include "modules/webgl/WebGLTexture.h"
32 #include "platform/NotImplemented.h"
33 32
34 namespace blink { 33 namespace blink {
35 34
36 namespace { 35 namespace {
37 36
38 class WebGLRenderbufferAttachment final : public WebGLFramebuffer::WebGLAttachme nt { 37 class WebGLRenderbufferAttachment final : public WebGLFramebuffer::WebGLAttachme nt {
39 public: 38 public:
40 static WebGLFramebuffer::WebGLAttachment* create(WebGLRenderbuffer*); 39 static WebGLFramebuffer::WebGLAttachment* create(WebGLRenderbuffer*);
41 40
42 DECLARE_VIRTUAL_TRACE(); 41 DECLARE_VIRTUAL_TRACE();
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 return GL_NONE; 422 return GL_NONE;
424 } 423 }
425 424
426 DEFINE_TRACE(WebGLFramebuffer) 425 DEFINE_TRACE(WebGLFramebuffer)
427 { 426 {
428 visitor->trace(m_attachments); 427 visitor->trace(m_attachments);
429 WebGLContextObject::trace(visitor); 428 WebGLContextObject::trace(visitor);
430 } 429 }
431 430
432 } // namespace blink 431 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698