| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 #include "core/inspector/InspectorHighlight.h" | 6 #include "core/inspector/InspectorHighlight.h" |
| 7 | 7 |
| 8 #include "core/dom/ClientRect.h" | 8 #include "core/dom/ClientRect.h" |
| 9 #include "core/dom/PseudoElement.h" | 9 #include "core/dom/PseudoElement.h" |
| 10 #include "core/frame/FrameView.h" | 10 #include "core/frame/FrameView.h" |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 config.contentOutline = Color(128, 0, 0, 0); | 421 config.contentOutline = Color(128, 0, 0, 0); |
| 422 config.padding = Color(0, 255, 0, 0); | 422 config.padding = Color(0, 255, 0, 0); |
| 423 config.border = Color(0, 0, 255, 0); | 423 config.border = Color(0, 0, 255, 0); |
| 424 config.margin = Color(255, 255, 255, 0); | 424 config.margin = Color(255, 255, 255, 0); |
| 425 config.eventTarget = Color(128, 128, 128, 0); | 425 config.eventTarget = Color(128, 128, 128, 0); |
| 426 config.shape = Color(0, 0, 0, 0); | 426 config.shape = Color(0, 0, 0, 0); |
| 427 config.shapeMargin = Color(128, 128, 128, 0); | 427 config.shapeMargin = Color(128, 128, 128, 0); |
| 428 config.showInfo = true; | 428 config.showInfo = true; |
| 429 config.showRulers = true; | 429 config.showRulers = true; |
| 430 config.showExtensionLines = true; | 430 config.showExtensionLines = true; |
| 431 config.showLayoutEditor = false; |
| 431 return config; | 432 return config; |
| 432 } | 433 } |
| 433 | 434 |
| 434 } // namespace blink | 435 } // namespace blink |
| OLD | NEW |