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

Side by Side Diff: third_party/WebKit/Source/core/dom/StyleEngine.cpp

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: fix typo Created 3 years, 8 months 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All
7 * rights reserved. 7 * rights reserved.
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 #include "core/dom/ElementTraversal.h" 45 #include "core/dom/ElementTraversal.h"
46 #include "core/dom/ProcessingInstruction.h" 46 #include "core/dom/ProcessingInstruction.h"
47 #include "core/dom/ShadowTreeStyleSheetCollection.h" 47 #include "core/dom/ShadowTreeStyleSheetCollection.h"
48 #include "core/dom/StyleChangeReason.h" 48 #include "core/dom/StyleChangeReason.h"
49 #include "core/dom/shadow/ShadowRoot.h" 49 #include "core/dom/shadow/ShadowRoot.h"
50 #include "core/frame/Settings.h" 50 #include "core/frame/Settings.h"
51 #include "core/html/HTMLIFrameElement.h" 51 #include "core/html/HTMLIFrameElement.h"
52 #include "core/html/HTMLLinkElement.h" 52 #include "core/html/HTMLLinkElement.h"
53 #include "core/html/HTMLSlotElement.h" 53 #include "core/html/HTMLSlotElement.h"
54 #include "core/html/imports/HTMLImportsController.h" 54 #include "core/html/imports/HTMLImportsController.h"
55 #include "core/inspector/InspectorInstrumentation.h"
56 #include "core/layout/api/LayoutViewItem.h" 55 #include "core/layout/api/LayoutViewItem.h"
57 #include "core/page/Page.h" 56 #include "core/page/Page.h"
57 #include "core/probe/CoreProbes.h"
58 #include "core/svg/SVGStyleElement.h" 58 #include "core/svg/SVGStyleElement.h"
59 #include "platform/fonts/FontCache.h" 59 #include "platform/fonts/FontCache.h"
60 #include "platform/instrumentation/tracing/TraceEvent.h" 60 #include "platform/instrumentation/tracing/TraceEvent.h"
61 61
62 namespace blink { 62 namespace blink {
63 63
64 using namespace HTMLNames; 64 using namespace HTMLNames;
65 65
66 StyleEngine::StyleEngine(Document& document) 66 StyleEngine::StyleEngine(Document& document)
67 : m_document(&document), 67 : m_document(&document),
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1155 } 1155 }
1156 1156
1157 DEFINE_TRACE_WRAPPERS(StyleEngine) { 1157 DEFINE_TRACE_WRAPPERS(StyleEngine) {
1158 for (auto sheet : m_injectedAuthorStyleSheets) { 1158 for (auto sheet : m_injectedAuthorStyleSheets) {
1159 visitor->traceWrappers(sheet); 1159 visitor->traceWrappers(sheet);
1160 } 1160 }
1161 visitor->traceWrappers(m_documentStyleSheetCollection); 1161 visitor->traceWrappers(m_documentStyleSheetCollection);
1162 } 1162 }
1163 1163
1164 } // namespace blink 1164 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698