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

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.cpp

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: sinkFor -> toCoreProbesSink Created 3 years, 9 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"
98 #include "core/instrumentation/CoreProbes.h"
99 #include "core/layout/LayoutMenuList.h" 99 #include "core/layout/LayoutMenuList.h"
100 #include "core/layout/LayoutObject.h" 100 #include "core/layout/LayoutObject.h"
101 #include "core/layout/LayoutTreeAsText.h" 101 #include "core/layout/LayoutTreeAsText.h"
102 #include "core/layout/api/LayoutMenuListItem.h" 102 #include "core/layout/api/LayoutMenuListItem.h"
103 #include "core/layout/api/LayoutViewItem.h" 103 #include "core/layout/api/LayoutViewItem.h"
104 #include "core/layout/compositing/CompositedLayerMapping.h" 104 #include "core/layout/compositing/CompositedLayerMapping.h"
105 #include "core/layout/compositing/PaintLayerCompositor.h" 105 #include "core/layout/compositing/PaintLayerCompositor.h"
106 #include "core/loader/DocumentLoader.h" 106 #include "core/loader/DocumentLoader.h"
107 #include "core/loader/FrameLoader.h" 107 #include "core/loader/FrameLoader.h"
108 #include "core/loader/HistoryItem.h" 108 #include "core/loader/HistoryItem.h"
(...skipping 3074 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

Powered by Google App Engine
This is Rietveld 408576698