summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/modules/webgl/WebGLSampler.cpp
diff options
context:
space:
mode:
authorperia@chromium.org <peria@chromium.org>2015-08-12 05:51:26 +0000
committerperia@chromium.org <peria@chromium.org>2015-08-12 05:51:26 +0000
commit413ee5dbae0aadb35eeebaa092f01e20dfb790a1 (patch)
tree8a7036c1585d8c25a61b950efd4a9914eb84ad42 /third_party/WebKit/Source/modules/webgl/WebGLSampler.cpp
parentf353ab0a1be4b4406c28fb4c74c7abd0bc905063 (diff)
downloadchromium_src-413ee5dbae0aadb35eeebaa092f01e20dfb790a1.zip
chromium_src-413ee5dbae0aadb35eeebaa092f01e20dfb790a1.tar.gz
chromium_src-413ee5dbae0aadb35eeebaa092f01e20dfb790a1.tar.bz2
Reland of http://crrev.com/1234883002
Added a flag to ignore the wrong plugin warning. ------------ [Oilpan] Migrate classes under module/webgl onto oilpan heap Following document reports the effect of this CL on performance and memory usages. https://docs.google.com/document/d/1QUDGL5a2wBZVyUrzlGjzKFe1sQgOOvm6gNhB1B7VRoE/edit?usp=sharing BUG=497662 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=200298 Review URL: https://codereview.chromium.org/1287883002 git-svn-id: svn://svn.chromium.org/blink/trunk@200381 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/Source/modules/webgl/WebGLSampler.cpp')
-rw-r--r--third_party/WebKit/Source/modules/webgl/WebGLSampler.cpp12
1 files changed, 3 insertions, 9 deletions
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLSampler.cpp b/third_party/WebKit/Source/modules/webgl/WebGLSampler.cpp
index 338c672..4aefbd7 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLSampler.cpp
+++ b/third_party/WebKit/Source/modules/webgl/WebGLSampler.cpp
@@ -10,20 +10,14 @@
namespace blink {
-PassRefPtrWillBeRawPtr<WebGLSampler> WebGLSampler::create(WebGL2RenderingContextBase* ctx)
+WebGLSampler* WebGLSampler::create(WebGL2RenderingContextBase* ctx)
{
- return adoptRefWillBeNoop(new WebGLSampler(ctx));
+ return new WebGLSampler(ctx);
}
WebGLSampler::~WebGLSampler()
{
- // Always call detach here to ensure that platform object deletion
- // happens with Oilpan enabled. It keeps the code regular to do it
- // with or without Oilpan enabled.
- //
- // See comment in WebGLBuffer's destructor for additional
- // information on why this is done for WebGLSharedObject-derived
- // objects.
+ // See the comment in WebGLObject::detachAndDeleteObject().
detachAndDeleteObject();
}