Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp

Issue 1479003002: Remove Simple Text Path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutText.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutText.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698