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

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

Issue 1903953002: [DevTools] Move from InstrumentingAgents to InstrumentingSessions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-discard-agent
Patch Set: rebased Created 4 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/inspector/ConsoleMessageStorage.h" 96 #include "core/inspector/ConsoleMessageStorage.h"
97 #include "core/inspector/InspectorConsoleAgent.h" 97 #include "core/inspector/InspectorConsoleAgent.h"
98 #include "core/inspector/InspectorInstrumentation.h" 98 #include "core/inspector/InspectorInstrumentation.h"
99 #include "core/inspector/InstanceCounters.h" 99 #include "core/inspector/InstanceCounters.h"
100 #include "core/inspector/InstrumentingAgents.h"
101 #include "core/layout/LayoutMenuList.h" 100 #include "core/layout/LayoutMenuList.h"
102 #include "core/layout/LayoutObject.h" 101 #include "core/layout/LayoutObject.h"
103 #include "core/layout/LayoutTreeAsText.h" 102 #include "core/layout/LayoutTreeAsText.h"
104 #include "core/layout/LayoutView.h" 103 #include "core/layout/LayoutView.h"
105 #include "core/layout/api/LayoutMenuListItem.h" 104 #include "core/layout/api/LayoutMenuListItem.h"
106 #include "core/layout/compositing/CompositedLayerMapping.h" 105 #include "core/layout/compositing/CompositedLayerMapping.h"
107 #include "core/layout/compositing/PaintLayerCompositor.h" 106 #include "core/layout/compositing/PaintLayerCompositor.h"
108 #include "core/loader/DocumentLoader.h" 107 #include "core/loader/DocumentLoader.h"
109 #include "core/loader/FrameLoader.h" 108 #include "core/loader/FrameLoader.h"
110 #include "core/loader/HistoryItem.h" 109 #include "core/loader/HistoryItem.h"
(...skipping 2476 matching lines...) Expand 10 before | Expand all | Expand 10 after
2587 } 2586 }
2588 2587
2589 String Internals::getProgrammaticScrollAnimationState(Node* node) const 2588 String Internals::getProgrammaticScrollAnimationState(Node* node) const
2590 { 2589 {
2591 if (ScrollableArea* scrollableArea = scrollableAreaForNode(node)) 2590 if (ScrollableArea* scrollableArea = scrollableAreaForNode(node))
2592 return scrollableArea->programmaticScrollAnimator().runStateAsText(); 2591 return scrollableArea->programmaticScrollAnimator().runStateAsText();
2593 return String(); 2592 return String();
2594 } 2593 }
2595 2594
2596 } // namespace blink 2595 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698