diff options
| author | hans@chromium.org <hans@chromium.org> | 2015-08-11 15:45:21 +0000 |
|---|---|---|
| committer | hans@chromium.org <hans@chromium.org> | 2015-08-11 15:45:21 +0000 |
| commit | c347cac78e4aa01986851bebb8ffc097f4447866 (patch) | |
| tree | 2a557e5094701ad28b5be125fb50977dfb809a88 /third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TC.cpp | |
| parent | 036cb30e983418d3be6d1fa447a6b156e6ebb432 (diff) | |
| download | chromium_src-c347cac78e4aa01986851bebb8ffc097f4447866.zip chromium_src-c347cac78e4aa01986851bebb8ffc097f4447866.tar.gz chromium_src-c347cac78e4aa01986851bebb8ffc097f4447866.tar.bz2 | |
Revert of [Oilpan] Migrate classes under module/webgl onto oilpan heap (patchset #13 id:240001 of https://codereview.chromium.org/1234883002/ )
Reason for revert:
This caused blink-gc plugin errors on all Win/Clang builders. See e.g. http://build.chromium.org/p/chromium.fyi/builders/ClangToTWin/builds/2402
Original issue's description:
> [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
TBR=oilpan-reviews@chromium.org,kbr@chromium.org,bajones@chromium.org,junov@chromium.org,zmo@chromium.org,sigbjornf@opera.com,haraken@chromium.org,peria@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=497662
Review URL: https://codereview.chromium.org/1281953003
git-svn-id: svn://svn.chromium.org/blink/trunk@200321 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TC.cpp')
| -rw-r--r-- | third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TC.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TC.cpp b/third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TC.cpp index b45b3ac..fcbdc83 100644 --- a/third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TC.cpp +++ b/third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureS3TC.cpp @@ -49,9 +49,9 @@ WebGLExtensionName WebGLCompressedTextureS3TC::name() const return WebGLCompressedTextureS3TCName; } -WebGLCompressedTextureS3TC* WebGLCompressedTextureS3TC::create(WebGLRenderingContextBase* context) +PassRefPtrWillBeRawPtr<WebGLCompressedTextureS3TC> WebGLCompressedTextureS3TC::create(WebGLRenderingContextBase* context) { - return new WebGLCompressedTextureS3TC(context); + return adoptRefWillBeNoop(new WebGLCompressedTextureS3TC(context)); } bool WebGLCompressedTextureS3TC::supported(WebGLRenderingContextBase* context) |
