| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 #include "core/layout/api/LayoutViewItem.h" | 76 #include "core/layout/api/LayoutViewItem.h" |
| 77 #include "core/layout/line/InlineTextBox.h" | 77 #include "core/layout/line/InlineTextBox.h" |
| 78 #include "core/loader/DocumentLoader.h" | 78 #include "core/loader/DocumentLoader.h" |
| 79 #include "core/page/Page.h" | 79 #include "core/page/Page.h" |
| 80 #include "core/style/StyleGeneratedImage.h" | 80 #include "core/style/StyleGeneratedImage.h" |
| 81 #include "core/style/StyleImage.h" | 81 #include "core/style/StyleImage.h" |
| 82 #include "core/svg/SVGElement.h" | 82 #include "core/svg/SVGElement.h" |
| 83 #include "platform/fonts/Font.h" | 83 #include "platform/fonts/Font.h" |
| 84 #include "platform/fonts/FontCache.h" | 84 #include "platform/fonts/FontCache.h" |
| 85 #include "platform/fonts/GlyphBuffer.h" | 85 #include "platform/fonts/GlyphBuffer.h" |
| 86 #include "platform/fonts/shaping/SimpleShaper.h" | |
| 87 #include "platform/text/TextRun.h" | 86 #include "platform/text/TextRun.h" |
| 88 #include "wtf/CurrentTime.h" | 87 #include "wtf/CurrentTime.h" |
| 89 #include "wtf/text/CString.h" | 88 #include "wtf/text/CString.h" |
| 90 #include "wtf/text/StringConcatenate.h" | 89 #include "wtf/text/StringConcatenate.h" |
| 91 | 90 |
| 92 namespace { | 91 namespace { |
| 93 | 92 |
| 94 int s_frontendOperationCounter = 0; | 93 int s_frontendOperationCounter = 0; |
| 95 | 94 |
| 96 class FrontendOperationScope { | 95 class FrontendOperationScope { |
| (...skipping 2387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2484 visitor->trace(m_idToInspectorStyleSheetForInlineStyle); | 2483 visitor->trace(m_idToInspectorStyleSheetForInlineStyle); |
| 2485 visitor->trace(m_cssStyleSheetToInspectorStyleSheet); | 2484 visitor->trace(m_cssStyleSheetToInspectorStyleSheet); |
| 2486 visitor->trace(m_documentToCSSStyleSheets); | 2485 visitor->trace(m_documentToCSSStyleSheets); |
| 2487 visitor->trace(m_invalidatedDocuments); | 2486 visitor->trace(m_invalidatedDocuments); |
| 2488 visitor->trace(m_nodeToInspectorStyleSheet); | 2487 visitor->trace(m_nodeToInspectorStyleSheet); |
| 2489 visitor->trace(m_inspectorUserAgentStyleSheet); | 2488 visitor->trace(m_inspectorUserAgentStyleSheet); |
| 2490 InspectorBaseAgent::trace(visitor); | 2489 InspectorBaseAgent::trace(visitor); |
| 2491 } | 2490 } |
| 2492 | 2491 |
| 2493 } // namespace blink | 2492 } // namespace blink |
| OLD | NEW |