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

Side by Side Diff: Source/core/html/canvas/WebGLSharedObject.cpp

Issue 365653002: Oilpan: move 2D Canvas and WebGL objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 5 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) 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 22 matching lines...) Expand all
33 namespace WebCore { 33 namespace WebCore {
34 34
35 WebGLSharedObject::WebGLSharedObject(WebGLRenderingContextBase* context) 35 WebGLSharedObject::WebGLSharedObject(WebGLRenderingContextBase* context)
36 : WebGLObject(context), 36 : WebGLObject(context),
37 m_contextGroup(context->contextGroup()) 37 m_contextGroup(context->contextGroup())
38 { 38 {
39 } 39 }
40 40
41 WebGLSharedObject::~WebGLSharedObject() 41 WebGLSharedObject::~WebGLSharedObject()
42 { 42 {
43 #if !ENABLE(OILPAN)
sof 2014/07/01 13:54:11 If this object dies at the same time as its contex
43 if (m_contextGroup) 44 if (m_contextGroup)
44 m_contextGroup->removeObject(this); 45 m_contextGroup->removeObject(this);
46 #endif
45 } 47 }
46 48
47 void WebGLSharedObject::detachContextGroup() 49 void WebGLSharedObject::detachContextGroup()
48 { 50 {
49 detach(); 51 detach();
50 if (m_contextGroup) { 52 if (m_contextGroup) {
51 deleteObject(0); 53 deleteObject(0);
52 m_contextGroup->removeObject(this); 54 m_contextGroup->removeObject(this);
53 m_contextGroup = 0; 55 m_contextGroup = nullptr;
54 } 56 }
55 } 57 }
56 58
57 blink::WebGraphicsContext3D* WebGLSharedObject::getAWebGraphicsContext3D() const 59 blink::WebGraphicsContext3D* WebGLSharedObject::getAWebGraphicsContext3D() const
58 { 60 {
59 return m_contextGroup ? m_contextGroup->getAWebGraphicsContext3D() : 0; 61 return m_contextGroup ? m_contextGroup->getAWebGraphicsContext3D() : 0;
60 } 62 }
61 63
64 void WebGLSharedObject::trace(Visitor* visitor)
65 {
66 visitor->trace(m_contextGroup);
67 WebGLObject::trace(visitor);
62 } 68 }
69
70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698