Index: Source/core/inspector/InspectorLayerTreeAgent.h |
diff --git a/Source/core/inspector/InspectorLayerTreeAgent.h b/Source/core/inspector/InspectorLayerTreeAgent.h |
index aa61c68c798b9c5591530356dbf05399e1cf2cf1..b4c3d80a9b19c433e640a33b5b60e41c4018abff 100644 |
--- a/Source/core/inspector/InspectorLayerTreeAgent.h |
+++ b/Source/core/inspector/InspectorLayerTreeAgent.h |
@@ -60,7 +60,7 @@ public: |
{ |
return adoptPtrWillBeNoop(new InspectorLayerTreeAgent(pageAgent)); |
} |
- virtual ~InspectorLayerTreeAgent(); |
+ ~InspectorLayerTreeAgent() override; |
DECLARE_VIRTUAL_TRACE(); |
void disable(ErrorString*) override; |
@@ -75,14 +75,14 @@ public: |
void didPaint(LayoutObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&); |
// Called from the front-end. |
- virtual void enable(ErrorString*) override; |
- virtual void compositingReasons(ErrorString*, const String& layerId, RefPtr<TypeBuilder::Array<String> >&) override; |
- virtual void makeSnapshot(ErrorString*, const String& layerId, String* snapshotId) override; |
- virtual void loadSnapshot(ErrorString*, const RefPtr<JSONArray>& tiles, String* snapshotId) override; |
- virtual void releaseSnapshot(ErrorString*, const String& snapshotId) override; |
- virtual void replaySnapshot(ErrorString*, const String& snapshotId, const int* fromStep, const int* toStep, const double* scale, String* dataURL) override; |
- virtual void profileSnapshot(ErrorString*, const String& snapshotId, const int* minRepeatCount, const double* minDuration, const RefPtr<JSONObject>* clipRect, RefPtr<TypeBuilder::Array<TypeBuilder::Array<double> > >&) override; |
- virtual void snapshotCommandLog(ErrorString*, const String& snapshotId, RefPtr<TypeBuilder::Array<JSONObject> >&) override; |
+ void enable(ErrorString*) override; |
+ void compositingReasons(ErrorString*, const String& layerId, RefPtr<TypeBuilder::Array<String>>&) override; |
+ void makeSnapshot(ErrorString*, const String& layerId, String* snapshotId) override; |
+ void loadSnapshot(ErrorString*, const RefPtr<JSONArray>& tiles, String* snapshotId) override; |
+ void releaseSnapshot(ErrorString*, const String& snapshotId) override; |
+ void replaySnapshot(ErrorString*, const String& snapshotId, const int* fromStep, const int* toStep, const double* scale, String* dataURL) override; |
+ void profileSnapshot(ErrorString*, const String& snapshotId, const int* minRepeatCount, const double* minDuration, const RefPtr<JSONObject>* clipRect, RefPtr<TypeBuilder::Array<TypeBuilder::Array<double>>>&) override; |
+ void snapshotCommandLog(ErrorString*, const String& snapshotId, RefPtr<TypeBuilder::Array<JSONObject>>&) override; |
// Called by other agents. |
PassRefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> > buildLayerTree(); |