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

Unified Diff: sky/engine/core/html/canvas/WebGLRenderingContextBase.h

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: sky/engine/core/html/canvas/WebGLRenderingContextBase.h
diff --git a/sky/engine/core/html/canvas/WebGLRenderingContextBase.h b/sky/engine/core/html/canvas/WebGLRenderingContextBase.h
index 6a55fb7ee99b62e87702caa887ffdd4a3283aff8..e898dab046fe6876523f54a64cf0b5f4b2302f30 100644
--- a/sky/engine/core/html/canvas/WebGLRenderingContextBase.h
+++ b/sky/engine/core/html/canvas/WebGLRenderingContextBase.h
@@ -355,15 +355,11 @@ public:
void setSavingImage(bool isSaving) { m_savingImage = isSaving; }
- virtual void trace(Visitor*) override;
-
class TextureUnitState {
ALLOW_ONLY_INLINE_ALLOCATION();
public:
RefPtr<WebGLTexture> m_texture2DBinding;
RefPtr<WebGLTexture> m_textureCubeMapBinding;
-
- void trace(Visitor*);
};
protected:
@@ -599,8 +595,6 @@ protected:
virtual const char* extensionName() const = 0;
virtual void loseExtension() = 0;
- virtual void trace(Visitor*) { }
-
private:
bool m_draft;
const char* const* m_prefixes;
@@ -653,12 +647,6 @@ protected:
}
}
- virtual void trace(Visitor* visitor) override
- {
- visitor->trace(m_extension);
- ExtensionTracker::trace(visitor);
- }
-
private:
TypedExtensionTracker(RefPtr<T>& extensionField, ExtensionFlags flags, const char* const* prefixes)
: ExtensionTracker(flags, prefixes)
« no previous file with comments | « sky/engine/core/html/canvas/WebGLRenderingContext.cpp ('k') | sky/engine/core/html/canvas/WebGLRenderingContextBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698