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

Side by Side Diff: third_party/WebKit/Source/core/dom/ContainerNode.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 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights
6 * reserved. 6 * reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 28 matching lines...) Expand all
39 #include "core/dom/StyleChangeReason.h" 39 #include "core/dom/StyleChangeReason.h"
40 #include "core/dom/StyleEngine.h" 40 #include "core/dom/StyleEngine.h"
41 #include "core/dom/shadow/ElementShadow.h" 41 #include "core/dom/shadow/ElementShadow.h"
42 #include "core/dom/shadow/ShadowRoot.h" 42 #include "core/dom/shadow/ShadowRoot.h"
43 #include "core/events/MutationEvent.h" 43 #include "core/events/MutationEvent.h"
44 #include "core/frame/FrameView.h" 44 #include "core/frame/FrameView.h"
45 #include "core/html/HTMLCollection.h" 45 #include "core/html/HTMLCollection.h"
46 #include "core/html/HTMLFrameOwnerElement.h" 46 #include "core/html/HTMLFrameOwnerElement.h"
47 #include "core/html/HTMLTagCollection.h" 47 #include "core/html/HTMLTagCollection.h"
48 #include "core/html/RadioNodeList.h" 48 #include "core/html/RadioNodeList.h"
49 #include "core/inspector/InspectorInstrumentation.h"
50 #include "core/layout/LayoutBlockFlow.h" 49 #include "core/layout/LayoutBlockFlow.h"
51 #include "core/layout/LayoutInline.h" 50 #include "core/layout/LayoutInline.h"
52 #include "core/layout/LayoutText.h" 51 #include "core/layout/LayoutText.h"
53 #include "core/layout/LayoutTheme.h" 52 #include "core/layout/LayoutTheme.h"
54 #include "core/layout/line/InlineTextBox.h" 53 #include "core/layout/line/InlineTextBox.h"
55 #include "core/layout/line/RootInlineBox.h" 54 #include "core/layout/line/RootInlineBox.h"
55 #include "core/probe/CoreProbes.h"
56 #include "platform/EventDispatchForbiddenScope.h" 56 #include "platform/EventDispatchForbiddenScope.h"
57 #include "platform/ScriptForbiddenScope.h" 57 #include "platform/ScriptForbiddenScope.h"
58 58
59 namespace blink { 59 namespace blink {
60 60
61 using namespace HTMLNames; 61 using namespace HTMLNames;
62 62
63 static void dispatchChildInsertionEvents(Node&); 63 static void dispatchChildInsertionEvents(Node&);
64 static void dispatchChildRemovalEvents(Node&); 64 static void dispatchChildRemovalEvents(Node&);
65 65
(...skipping 1422 matching lines...) Expand 10 before | Expand all | Expand 10 after
1488 return true; 1488 return true;
1489 1489
1490 if (node->isElementNode() && toElement(node)->shadow()) 1490 if (node->isElementNode() && toElement(node)->shadow())
1491 return true; 1491 return true;
1492 1492
1493 return false; 1493 return false;
1494 } 1494 }
1495 #endif 1495 #endif
1496 1496
1497 } // namespace blink 1497 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/CharacterData.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698