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

Unified Diff: Source/core/dom/StringCallback.h

Issue 563703002: Oilpan: Enable oilpan for callback classes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/ScriptedAnimationController.cpp ('k') | Source/core/dom/StringCallback.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/StringCallback.h
diff --git a/Source/core/dom/StringCallback.h b/Source/core/dom/StringCallback.h
index 174ef052ef0a5cb94c98ae9888aab23e42b699bc..1e0f8e78490ff3c887f71bd04698e9ab7f193364 100644
--- a/Source/core/dom/StringCallback.h
+++ b/Source/core/dom/StringCallback.h
@@ -38,14 +38,14 @@ namespace blink {
class ExecutionContext;
-class StringCallback : public NoBaseWillBeGarbageCollectedFinalized<StringCallback> {
+class StringCallback : public GarbageCollectedFinalized<StringCallback> {
public:
virtual ~StringCallback() { }
virtual void trace(Visitor*) { }
virtual void handleEvent(const String& data) = 0;
// Helper to post callback task.
- static void scheduleCallback(PassOwnPtrWillBeRawPtr<StringCallback>, ExecutionContext*, const String& data, const String& instrumentationName);
+ static void scheduleCallback(StringCallback*, ExecutionContext*, const String& data, const String& instrumentationName);
};
} // namespace blink
« no previous file with comments | « Source/core/dom/ScriptedAnimationController.cpp ('k') | Source/core/dom/StringCallback.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698