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

Side by Side Diff: third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.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) 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 21 matching lines...) Expand all
32 #include "core/frame/FrameHost.h" 32 #include "core/frame/FrameHost.h"
33 #include "core/frame/FrameView.h" 33 #include "core/frame/FrameView.h"
34 #include "core/frame/RemoteFrame.h" 34 #include "core/frame/RemoteFrame.h"
35 #include "core/frame/Settings.h" 35 #include "core/frame/Settings.h"
36 #include "core/frame/VisualViewport.h" 36 #include "core/frame/VisualViewport.h"
37 #include "core/html/HTMLCanvasElement.h" 37 #include "core/html/HTMLCanvasElement.h"
38 #include "core/html/HTMLIFrameElement.h" 38 #include "core/html/HTMLIFrameElement.h"
39 #include "core/html/HTMLMediaElement.h" 39 #include "core/html/HTMLMediaElement.h"
40 #include "core/html/HTMLVideoElement.h" 40 #include "core/html/HTMLVideoElement.h"
41 #include "core/html/canvas/CanvasRenderingContext.h" 41 #include "core/html/canvas/CanvasRenderingContext.h"
42 #include "core/inspector/InspectorInstrumentation.h"
43 #include "core/layout/LayoutEmbeddedObject.h" 42 #include "core/layout/LayoutEmbeddedObject.h"
44 #include "core/layout/LayoutHTMLCanvas.h" 43 #include "core/layout/LayoutHTMLCanvas.h"
45 #include "core/layout/LayoutImage.h" 44 #include "core/layout/LayoutImage.h"
46 #include "core/layout/LayoutPart.h" 45 #include "core/layout/LayoutPart.h"
47 #include "core/layout/LayoutVideo.h" 46 #include "core/layout/LayoutVideo.h"
48 #include "core/layout/LayoutView.h" 47 #include "core/layout/LayoutView.h"
49 #include "core/layout/api/LayoutAPIShim.h" 48 #include "core/layout/api/LayoutAPIShim.h"
50 #include "core/layout/api/LayoutPartItem.h" 49 #include "core/layout/api/LayoutPartItem.h"
51 #include "core/layout/compositing/PaintLayerCompositor.h" 50 #include "core/layout/compositing/PaintLayerCompositor.h"
52 #include "core/loader/resource/ImageResourceContent.h" 51 #include "core/loader/resource/ImageResourceContent.h"
53 #include "core/page/ChromeClient.h" 52 #include "core/page/ChromeClient.h"
54 #include "core/page/Page.h" 53 #include "core/page/Page.h"
55 #include "core/page/scrolling/ScrollingCoordinator.h" 54 #include "core/page/scrolling/ScrollingCoordinator.h"
56 #include "core/page/scrolling/StickyPositionScrollingConstraints.h" 55 #include "core/page/scrolling/StickyPositionScrollingConstraints.h"
57 #include "core/page/scrolling/TopDocumentRootScrollerController.h" 56 #include "core/page/scrolling/TopDocumentRootScrollerController.h"
58 #include "core/paint/ObjectPaintInvalidator.h" 57 #include "core/paint/ObjectPaintInvalidator.h"
59 #include "core/paint/PaintInfo.h" 58 #include "core/paint/PaintInfo.h"
60 #include "core/paint/PaintLayerPainter.h" 59 #include "core/paint/PaintLayerPainter.h"
61 #include "core/paint/PaintLayerStackingNodeIterator.h" 60 #include "core/paint/PaintLayerStackingNodeIterator.h"
62 #include "core/paint/ScrollableAreaPainter.h" 61 #include "core/paint/ScrollableAreaPainter.h"
63 #include "core/paint/TransformRecorder.h" 62 #include "core/paint/TransformRecorder.h"
64 #include "core/plugins/PluginView.h" 63 #include "core/plugins/PluginView.h"
64 #include "core/probe/CoreProbes.h"
65 #include "platform/LengthFunctions.h" 65 #include "platform/LengthFunctions.h"
66 #include "platform/RuntimeEnabledFeatures.h" 66 #include "platform/RuntimeEnabledFeatures.h"
67 #include "platform/fonts/FontCache.h" 67 #include "platform/fonts/FontCache.h"
68 #include "platform/geometry/TransformState.h" 68 #include "platform/geometry/TransformState.h"
69 #include "platform/graphics/BitmapImage.h" 69 #include "platform/graphics/BitmapImage.h"
70 #include "platform/graphics/CompositorFilterOperations.h" 70 #include "platform/graphics/CompositorFilterOperations.h"
71 #include "platform/graphics/CompositorMutableProperties.h" 71 #include "platform/graphics/CompositorMutableProperties.h"
72 #include "platform/graphics/GraphicsContext.h" 72 #include "platform/graphics/GraphicsContext.h"
73 #include "platform/graphics/paint/ClipDisplayItem.h" 73 #include "platform/graphics/paint/ClipDisplayItem.h"
74 #include "platform/graphics/paint/CullRect.h" 74 #include "platform/graphics/paint/CullRect.h"
(...skipping 3458 matching lines...) Expand 10 before | Expand all | Expand 10 after
3533 } else if (graphicsLayer == m_decorationOutlineLayer.get()) { 3533 } else if (graphicsLayer == m_decorationOutlineLayer.get()) {
3534 name = "Decoration Layer"; 3534 name = "Decoration Layer";
3535 } else { 3535 } else {
3536 NOTREACHED(); 3536 NOTREACHED();
3537 } 3537 }
3538 3538
3539 return name; 3539 return name;
3540 } 3540 }
3541 3541
3542 } // namespace blink 3542 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698