Chromium Code Reviews| Index: third_party/WebKit/Source/core/inspector/InspectorHighlight.h |
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorHighlight.h b/third_party/WebKit/Source/core/inspector/InspectorHighlight.h |
| index d8e1ef862ae087126c1c58a36b33484746970331..e1b1bedbcabc959aca3e290720e4edbd543b7e2b 100644 |
| --- a/third_party/WebKit/Source/core/inspector/InspectorHighlight.h |
| +++ b/third_party/WebKit/Source/core/inspector/InspectorHighlight.h |
| @@ -46,7 +46,7 @@ class CORE_EXPORT InspectorHighlight { |
| STACK_ALLOCATED(); |
| public: |
| InspectorHighlight(Node*, const InspectorHighlightConfig&, bool appendElementInfo); |
| - InspectorHighlight(); |
| + InspectorHighlight(float highlightScale); |
|
dgozman
2016/07/07 00:30:09
style: explicit
Bret
2016/07/07 01:15:11
Done.
|
| ~InspectorHighlight(); |
| static bool getBoxModel(Node*, std::unique_ptr<protocol::DOM::BoxModel>*); |
| @@ -67,6 +67,7 @@ private: |
| bool m_showRulers; |
| bool m_showExtensionLines; |
| bool m_displayAsMaterial; |
| + float m_highlightScale; |
|
dgozman
2016/07/07 00:30:10
Just m_scale. It's already a highlight object.
Bret
2016/07/07 01:15:11
Done. Changed in PathBuilder::appendPath and Shape
|
| }; |
| } // namespace blink |