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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalDOMWindow.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) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 #include "core/frame/LocalFrameClient.h" 61 #include "core/frame/LocalFrameClient.h"
62 #include "core/frame/Navigator.h" 62 #include "core/frame/Navigator.h"
63 #include "core/frame/Screen.h" 63 #include "core/frame/Screen.h"
64 #include "core/frame/ScrollToOptions.h" 64 #include "core/frame/ScrollToOptions.h"
65 #include "core/frame/Settings.h" 65 #include "core/frame/Settings.h"
66 #include "core/frame/SuspendableTimer.h" 66 #include "core/frame/SuspendableTimer.h"
67 #include "core/frame/VisualViewport.h" 67 #include "core/frame/VisualViewport.h"
68 #include "core/html/HTMLFrameOwnerElement.h" 68 #include "core/html/HTMLFrameOwnerElement.h"
69 #include "core/input/EventHandler.h" 69 #include "core/input/EventHandler.h"
70 #include "core/inspector/ConsoleMessage.h" 70 #include "core/inspector/ConsoleMessage.h"
71 #include "core/inspector/InspectorInstrumentation.h"
72 #include "core/inspector/InspectorTraceEvents.h" 71 #include "core/inspector/InspectorTraceEvents.h"
73 #include "core/loader/DocumentLoader.h" 72 #include "core/loader/DocumentLoader.h"
74 #include "core/loader/appcache/ApplicationCache.h" 73 #include "core/loader/appcache/ApplicationCache.h"
75 #include "core/page/ChromeClient.h" 74 #include "core/page/ChromeClient.h"
76 #include "core/page/CreateWindow.h" 75 #include "core/page/CreateWindow.h"
77 #include "core/page/Page.h" 76 #include "core/page/Page.h"
78 #include "core/page/WindowFeatures.h" 77 #include "core/page/WindowFeatures.h"
79 #include "core/page/scrolling/ScrollingCoordinator.h" 78 #include "core/page/scrolling/ScrollingCoordinator.h"
79 #include "core/probe/CoreProbes.h"
80 #include "core/timing/DOMWindowPerformance.h" 80 #include "core/timing/DOMWindowPerformance.h"
81 #include "core/timing/Performance.h" 81 #include "core/timing/Performance.h"
82 #include "platform/EventDispatchForbiddenScope.h" 82 #include "platform/EventDispatchForbiddenScope.h"
83 #include "platform/Histogram.h" 83 #include "platform/Histogram.h"
84 #include "platform/WebFrameScheduler.h" 84 #include "platform/WebFrameScheduler.h"
85 #include "platform/loader/fetch/ResourceFetcher.h" 85 #include "platform/loader/fetch/ResourceFetcher.h"
86 #include "platform/weborigin/SecurityOrigin.h" 86 #include "platform/weborigin/SecurityOrigin.h"
87 #include "platform/weborigin/Suborigin.h" 87 #include "platform/weborigin/Suborigin.h"
88 #include "public/platform/Platform.h" 88 #include "public/platform/Platform.h"
89 #include "public/platform/WebScreenInfo.h" 89 #include "public/platform/WebScreenInfo.h"
(...skipping 1569 matching lines...) Expand 10 before | Expand all | Expand 10 after
1659 DOMWindow::trace(visitor); 1659 DOMWindow::trace(visitor);
1660 Supplementable<LocalDOMWindow>::trace(visitor); 1660 Supplementable<LocalDOMWindow>::trace(visitor);
1661 } 1661 }
1662 1662
1663 DEFINE_TRACE_WRAPPERS(LocalDOMWindow) { 1663 DEFINE_TRACE_WRAPPERS(LocalDOMWindow) {
1664 visitor->traceWrappers(m_customElements); 1664 visitor->traceWrappers(m_customElements);
1665 DOMWindow::traceWrappers(visitor); 1665 DOMWindow::traceWrappers(visitor);
1666 } 1666 }
1667 1667
1668 } // namespace blink 1668 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.cpp ('k') | third_party/WebKit/Source/core/frame/LocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698