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

Side by Side Diff: third_party/WebKit/Source/core/frame/VisualViewport.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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 22 matching lines...) Expand all
33 #include <memory> 33 #include <memory>
34 #include "core/dom/DOMNodeIds.h" 34 #include "core/dom/DOMNodeIds.h"
35 #include "core/dom/TaskRunnerHelper.h" 35 #include "core/dom/TaskRunnerHelper.h"
36 #include "core/frame/FrameView.h" 36 #include "core/frame/FrameView.h"
37 #include "core/frame/LocalFrame.h" 37 #include "core/frame/LocalFrame.h"
38 #include "core/frame/LocalFrameClient.h" 38 #include "core/frame/LocalFrameClient.h"
39 #include "core/frame/PageScaleConstraints.h" 39 #include "core/frame/PageScaleConstraints.h"
40 #include "core/frame/PageScaleConstraintsSet.h" 40 #include "core/frame/PageScaleConstraintsSet.h"
41 #include "core/frame/RootFrameViewport.h" 41 #include "core/frame/RootFrameViewport.h"
42 #include "core/frame/Settings.h" 42 #include "core/frame/Settings.h"
43 #include "core/inspector/InspectorInstrumentation.h"
44 #include "core/layout/TextAutosizer.h" 43 #include "core/layout/TextAutosizer.h"
45 #include "core/layout/compositing/PaintLayerCompositor.h" 44 #include "core/layout/compositing/PaintLayerCompositor.h"
46 #include "core/page/ChromeClient.h" 45 #include "core/page/ChromeClient.h"
47 #include "core/page/Page.h" 46 #include "core/page/Page.h"
48 #include "core/page/scrolling/ScrollingCoordinator.h" 47 #include "core/page/scrolling/ScrollingCoordinator.h"
48 #include "core/probe/CoreProbes.h"
49 #include "platform/Histogram.h" 49 #include "platform/Histogram.h"
50 #include "platform/geometry/DoubleRect.h" 50 #include "platform/geometry/DoubleRect.h"
51 #include "platform/geometry/FloatSize.h" 51 #include "platform/geometry/FloatSize.h"
52 #include "platform/graphics/CompositorMutableProperties.h" 52 #include "platform/graphics/CompositorMutableProperties.h"
53 #include "platform/graphics/GraphicsLayer.h" 53 #include "platform/graphics/GraphicsLayer.h"
54 #include "platform/instrumentation/tracing/TraceEvent.h" 54 #include "platform/instrumentation/tracing/TraceEvent.h"
55 #include "platform/scroll/Scrollbar.h" 55 #include "platform/scroll/Scrollbar.h"
56 #include "platform/scroll/ScrollbarThemeOverlay.h" 56 #include "platform/scroll/ScrollbarThemeOverlay.h"
57 #include "public/platform/WebCompositorSupport.h" 57 #include "public/platform/WebCompositorSupport.h"
58 #include "public/platform/WebScrollbar.h" 58 #include "public/platform/WebScrollbar.h"
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 } else if (graphicsLayer == m_rootTransformLayer.get()) { 842 } else if (graphicsLayer == m_rootTransformLayer.get()) {
843 name = "Root Transform Layer"; 843 name = "Root Transform Layer";
844 } else { 844 } else {
845 ASSERT_NOT_REACHED(); 845 ASSERT_NOT_REACHED();
846 } 846 }
847 847
848 return name; 848 return name;
849 } 849 }
850 850
851 } // namespace blink 851 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/Screen.cpp ('k') | third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698