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

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

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: sinkFor -> toCoreProbesSink 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 #include "core/html/canvas/CanvasRenderingContext.h" 174 #include "core/html/canvas/CanvasRenderingContext.h"
175 #include "core/html/forms/FormController.h" 175 #include "core/html/forms/FormController.h"
176 #include "core/html/imports/HTMLImportLoader.h" 176 #include "core/html/imports/HTMLImportLoader.h"
177 #include "core/html/imports/HTMLImportsController.h" 177 #include "core/html/imports/HTMLImportsController.h"
178 #include "core/html/parser/HTMLDocumentParser.h" 178 #include "core/html/parser/HTMLDocumentParser.h"
179 #include "core/html/parser/HTMLParserIdioms.h" 179 #include "core/html/parser/HTMLParserIdioms.h"
180 #include "core/html/parser/NestingLevelIncrementer.h" 180 #include "core/html/parser/NestingLevelIncrementer.h"
181 #include "core/html/parser/TextResourceDecoder.h" 181 #include "core/html/parser/TextResourceDecoder.h"
182 #include "core/input/EventHandler.h" 182 #include "core/input/EventHandler.h"
183 #include "core/inspector/ConsoleMessage.h" 183 #include "core/inspector/ConsoleMessage.h"
184 #include "core/inspector/InspectorInstrumentation.h"
185 #include "core/inspector/InspectorTraceEvents.h" 184 #include "core/inspector/InspectorTraceEvents.h"
186 #include "core/inspector/MainThreadDebugger.h" 185 #include "core/inspector/MainThreadDebugger.h"
186 #include "core/instrumentation/CoreProbes.h"
187 #include "core/layout/HitTestCanvasResult.h" 187 #include "core/layout/HitTestCanvasResult.h"
188 #include "core/layout/HitTestResult.h" 188 #include "core/layout/HitTestResult.h"
189 #include "core/layout/LayoutPart.h" 189 #include "core/layout/LayoutPart.h"
190 #include "core/layout/LayoutView.h" 190 #include "core/layout/LayoutView.h"
191 #include "core/layout/TextAutosizer.h" 191 #include "core/layout/TextAutosizer.h"
192 #include "core/layout/api/LayoutPartItem.h" 192 #include "core/layout/api/LayoutPartItem.h"
193 #include "core/layout/api/LayoutViewItem.h" 193 #include "core/layout/api/LayoutViewItem.h"
194 #include "core/layout/compositing/PaintLayerCompositor.h" 194 #include "core/layout/compositing/PaintLayerCompositor.h"
195 #include "core/loader/CookieJar.h" 195 #include "core/loader/CookieJar.h"
196 #include "core/loader/DocumentLoader.h" 196 #include "core/loader/DocumentLoader.h"
(...skipping 6459 matching lines...) Expand 10 before | Expand all | Expand 10 after
6656 } 6656 }
6657 6657
6658 void showLiveDocumentInstances() { 6658 void showLiveDocumentInstances() {
6659 WeakDocumentSet& set = liveDocumentSet(); 6659 WeakDocumentSet& set = liveDocumentSet();
6660 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6660 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6661 for (blink::Document* document : set) 6661 for (blink::Document* document : set)
6662 fprintf(stderr, "- Document %p URL: %s\n", document, 6662 fprintf(stderr, "- Document %p URL: %s\n", document,
6663 document->url().getString().utf8().data()); 6663 document->url().getString().utf8().data());
6664 } 6664 }
6665 #endif 6665 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698