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

Side by Side Diff: Source/modules/webgl/WebGLLoseContext.cpp

Issue 1234883002: [Oilpan] Migrate classes under module/webgl onto oilpan heap (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 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 | « Source/modules/webgl/WebGLLoseContext.h ('k') | Source/modules/webgl/WebGLLoseContext.idl » ('j') | 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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google 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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 { 44 {
45 if (force) 45 if (force)
46 WebGLExtension::lose(true); 46 WebGLExtension::lose(true);
47 } 47 }
48 48
49 WebGLExtensionName WebGLLoseContext::name() const 49 WebGLExtensionName WebGLLoseContext::name() const
50 { 50 {
51 return WebGLLoseContextName; 51 return WebGLLoseContextName;
52 } 52 }
53 53
54 PassRefPtrWillBeRawPtr<WebGLLoseContext> WebGLLoseContext::create(WebGLRendering ContextBase* context) 54 WebGLLoseContext* WebGLLoseContext::create(WebGLRenderingContextBase* context)
55 { 55 {
56 return adoptRefWillBeNoop(new WebGLLoseContext(context)); 56 return new WebGLLoseContext(context);
57 } 57 }
58 58
59 void WebGLLoseContext::loseContext() 59 void WebGLLoseContext::loseContext()
60 { 60 {
61 WebGLExtensionScopedContext scoped(this); 61 WebGLExtensionScopedContext scoped(this);
62 if (!scoped.isLost()) 62 if (!scoped.isLost()) {
63 scoped.context()->forceLostContext(WebGLRenderingContextBase::WebGLLoseC ontextLostContext, WebGLRenderingContextBase::Manual); 63 scoped.context()->forceLostContext(WebGLRenderingContextBase::WebGLLoseC ontextLostContext, WebGLRenderingContextBase::Manual);
64 }
64 } 65 }
65 66
66 void WebGLLoseContext::restoreContext() 67 void WebGLLoseContext::restoreContext()
67 { 68 {
68 WebGLExtensionScopedContext scoped(this); 69 WebGLExtensionScopedContext scoped(this);
69 if (!scoped.isLost()) 70 if (!scoped.isLost())
70 scoped.context()->forceRestoreContext(); 71 scoped.context()->forceRestoreContext();
71 } 72 }
72 73
73 bool WebGLLoseContext::supported(WebGLRenderingContextBase*) 74 bool WebGLLoseContext::supported(WebGLRenderingContextBase*)
74 { 75 {
75 return true; 76 return true;
76 } 77 }
77 78
78 const char* WebGLLoseContext::extensionName() 79 const char* WebGLLoseContext::extensionName()
79 { 80 {
80 return "WEBGL_lose_context"; 81 return "WEBGL_lose_context";
81 } 82 }
82 83
83 } // namespace blink 84 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/webgl/WebGLLoseContext.h ('k') | Source/modules/webgl/WebGLLoseContext.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698