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

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
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 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 #include "core/html/HTMLMediaElement.h" 87 #include "core/html/HTMLMediaElement.h"
88 #include "core/html/HTMLSelectElement.h" 88 #include "core/html/HTMLSelectElement.h"
89 #include "core/html/HTMLTextAreaElement.h" 89 #include "core/html/HTMLTextAreaElement.h"
90 #include "core/html/canvas/CanvasFontCache.h" 90 #include "core/html/canvas/CanvasFontCache.h"
91 #include "core/html/canvas/CanvasRenderingContext.h" 91 #include "core/html/canvas/CanvasRenderingContext.h"
92 #include "core/html/forms/FormController.h" 92 #include "core/html/forms/FormController.h"
93 #include "core/html/shadow/ShadowElementNames.h" 93 #include "core/html/shadow/ShadowElementNames.h"
94 #include "core/html/shadow/TextControlInnerElements.h" 94 #include "core/html/shadow/TextControlInnerElements.h"
95 #include "core/input/EventHandler.h" 95 #include "core/input/EventHandler.h"
96 #include "core/input/KeyboardEventManager.h" 96 #include "core/input/KeyboardEventManager.h"
97 #include "core/inspector/InspectorInstrumentation.h"
98 #include "core/inspector/MainThreadDebugger.h" 97 #include "core/inspector/MainThreadDebugger.h"
99 #include "core/layout/LayoutMenuList.h" 98 #include "core/layout/LayoutMenuList.h"
100 #include "core/layout/LayoutObject.h" 99 #include "core/layout/LayoutObject.h"
101 #include "core/layout/LayoutTreeAsText.h" 100 #include "core/layout/LayoutTreeAsText.h"
102 #include "core/layout/api/LayoutMenuListItem.h" 101 #include "core/layout/api/LayoutMenuListItem.h"
103 #include "core/layout/api/LayoutViewItem.h" 102 #include "core/layout/api/LayoutViewItem.h"
104 #include "core/layout/compositing/CompositedLayerMapping.h" 103 #include "core/layout/compositing/CompositedLayerMapping.h"
105 #include "core/layout/compositing/PaintLayerCompositor.h" 104 #include "core/layout/compositing/PaintLayerCompositor.h"
106 #include "core/loader/DocumentLoader.h" 105 #include "core/loader/DocumentLoader.h"
107 #include "core/loader/FrameLoader.h" 106 #include "core/loader/FrameLoader.h"
108 #include "core/loader/HistoryItem.h" 107 #include "core/loader/HistoryItem.h"
109 #include "core/page/ChromeClient.h" 108 #include "core/page/ChromeClient.h"
110 #include "core/page/FocusController.h" 109 #include "core/page/FocusController.h"
111 #include "core/page/Page.h" 110 #include "core/page/Page.h"
112 #include "core/page/PrintContext.h" 111 #include "core/page/PrintContext.h"
113 #include "core/page/scrolling/ScrollState.h" 112 #include "core/page/scrolling/ScrollState.h"
114 #include "core/paint/PaintLayer.h" 113 #include "core/paint/PaintLayer.h"
114 #include "core/probe/CoreProbes.h"
115 #include "core/svg/SVGImageElement.h" 115 #include "core/svg/SVGImageElement.h"
116 #include "core/testing/CallbackFunctionTest.h" 116 #include "core/testing/CallbackFunctionTest.h"
117 #include "core/testing/DictionaryTest.h" 117 #include "core/testing/DictionaryTest.h"
118 #include "core/testing/GCObservation.h" 118 #include "core/testing/GCObservation.h"
119 #include "core/testing/InternalRuntimeFlags.h" 119 #include "core/testing/InternalRuntimeFlags.h"
120 #include "core/testing/InternalSettings.h" 120 #include "core/testing/InternalSettings.h"
121 #include "core/testing/LayerRect.h" 121 #include "core/testing/LayerRect.h"
122 #include "core/testing/LayerRectList.h" 122 #include "core/testing/LayerRectList.h"
123 #include "core/testing/MockHyphenation.h" 123 #include "core/testing/MockHyphenation.h"
124 #include "core/testing/OriginTrialsTest.h" 124 #include "core/testing/OriginTrialsTest.h"
(...skipping 3058 matching lines...) Expand 10 before | Expand all | Expand 10 after
3183 3183
3184 void Internals::crash() { 3184 void Internals::crash() {
3185 CHECK(false) << "Intentional crash"; 3185 CHECK(false) << "Intentional crash";
3186 } 3186 }
3187 3187
3188 void Internals::setIsLowEndDevice(bool isLowEndDevice) { 3188 void Internals::setIsLowEndDevice(bool isLowEndDevice) {
3189 MemoryCoordinator::setIsLowEndDeviceForTesting(isLowEndDevice); 3189 MemoryCoordinator::setIsLowEndDeviceForTesting(isLowEndDevice);
3190 } 3190 }
3191 3191
3192 } // namespace blink 3192 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/probe/OWNERS ('k') | third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698