| Index: Source/core/inspector/InspectorLayerTreeAgent.h
|
| diff --git a/Source/core/inspector/InspectorLayerTreeAgent.h b/Source/core/inspector/InspectorLayerTreeAgent.h
|
| index 39695c63d2e303f45150eaeb3933dbbc56d2cb94..3f1734236f6b62681b3eabfcd672c5f8c50640ba 100644
|
| --- a/Source/core/inspector/InspectorLayerTreeAgent.h
|
| +++ b/Source/core/inspector/InspectorLayerTreeAgent.h
|
| @@ -72,16 +72,16 @@ public:
|
| // Called from the front-end.
|
| virtual void enable(ErrorString*) override;
|
| virtual void disable(ErrorString*) override;
|
| - virtual void compositingReasons(ErrorString*, const String& layerId, RefPtr<TypeBuilder::Array<String> >&) 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;
|
| + 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;
|
|
|
| // Called by other agents.
|
| - PassRefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> > buildLayerTree();
|
| + PassRefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer>> buildLayerTree();
|
|
|
| private:
|
| static unsigned s_lastSnapshotId;
|
| @@ -96,14 +96,14 @@ private:
|
|
|
| typedef HashMap<int, int> LayerIdToNodeIdMap;
|
| void buildLayerIdToNodeIdMap(RenderLayer*, LayerIdToNodeIdMap&);
|
| - void gatherGraphicsLayers(GraphicsLayer*, HashMap<int, int>& layerIdToNodeIdMap, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >&);
|
| + void gatherGraphicsLayers(GraphicsLayer*, HashMap<int, int>& layerIdToNodeIdMap, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer>>&);
|
| int idForNode(Node*);
|
|
|
| InspectorFrontend::LayerTree* m_frontend;
|
| RawPtrWillBeMember<Page> m_page;
|
| Vector<int, 2> m_pageOverlayLayerIds;
|
|
|
| - typedef HashMap<String, RefPtr<PictureSnapshot> > SnapshotById;
|
| + typedef HashMap<String, RefPtr<PictureSnapshot>> SnapshotById;
|
| SnapshotById m_snapshotById;
|
| };
|
|
|
|
|