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

Unified Diff: Source/core/inspector/InspectorHeapProfilerAgent.h

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/inspector/InspectorDOMAgent.cpp ('k') | Source/core/inspector/InspectorHeapProfilerAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorHeapProfilerAgent.h
diff --git a/Source/core/inspector/InspectorHeapProfilerAgent.h b/Source/core/inspector/InspectorHeapProfilerAgent.h
index c24d5bab76dbf2773e0ea57ca302e7dd4486e85a..2329ef6ed0c8990621fb82fb13117d2ea4ca90c4 100644
--- a/Source/core/inspector/InspectorHeapProfilerAgent.h
+++ b/Source/core/inspector/InspectorHeapProfilerAgent.h
@@ -53,23 +53,23 @@ class CORE_EXPORT InspectorHeapProfilerAgent final : public InspectorBaseAgent<I
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(InspectorHeapProfilerAgent);
public:
static PassOwnPtrWillBeRawPtr<InspectorHeapProfilerAgent> create(InjectedScriptManager*);
- virtual ~InspectorHeapProfilerAgent();
+ ~InspectorHeapProfilerAgent() override;
DECLARE_VIRTUAL_TRACE();
- virtual void collectGarbage(ErrorString*) override;
+ void collectGarbage(ErrorString*) override;
- virtual void enable(ErrorString*) override;
- virtual void startTrackingHeapObjects(ErrorString*, const bool* trackAllocations) override;
- virtual void stopTrackingHeapObjects(ErrorString*, const bool* reportProgress) override;
+ void enable(ErrorString*) override;
+ void startTrackingHeapObjects(ErrorString*, const bool* trackAllocations) override;
+ void stopTrackingHeapObjects(ErrorString*, const bool* reportProgress) override;
void disable(ErrorString*) override;
void restore() override;
- virtual void takeHeapSnapshot(ErrorString*, const bool* reportProgress) override;
+ void takeHeapSnapshot(ErrorString*, const bool* reportProgress) override;
- virtual void getObjectByHeapObjectId(ErrorString*, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) override;
- virtual void addInspectedHeapObject(ErrorString*, const String& inspectedHeapObjectId) override;
- virtual void getHeapObjectId(ErrorString*, const String& objectId, String* heapSnapshotObjectId) override;
+ void getObjectByHeapObjectId(ErrorString*, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) override;
+ void addInspectedHeapObject(ErrorString*, const String& inspectedHeapObjectId) override;
+ void getHeapObjectId(ErrorString*, const String& objectId, String* heapSnapshotObjectId) override;
private:
class HeapStatsStream;
« no previous file with comments | « Source/core/inspector/InspectorDOMAgent.cpp ('k') | Source/core/inspector/InspectorHeapProfilerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698