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

Side by Side Diff: third_party/WebKit/Source/core/inspector/MainThreadDebugger.cpp

Issue 2774823002: Remove FrameHost class (Closed)
Patch Set: Rebase 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) 2011 Google Inc. All rights reserved. 2 * Copyright (c) 2011 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 30 matching lines...) Expand all
41 #include "bindings/core/v8/V8Window.h" 41 #include "bindings/core/v8/V8Window.h"
42 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" 42 #include "bindings/core/v8/WorkerOrWorkletScriptController.h"
43 #include "core/dom/ContainerNode.h" 43 #include "core/dom/ContainerNode.h"
44 #include "core/dom/Document.h" 44 #include "core/dom/Document.h"
45 #include "core/dom/Element.h" 45 #include "core/dom/Element.h"
46 #include "core/dom/ExecutionContext.h" 46 #include "core/dom/ExecutionContext.h"
47 #include "core/dom/StaticNodeList.h" 47 #include "core/dom/StaticNodeList.h"
48 #include "core/events/ErrorEvent.h" 48 #include "core/events/ErrorEvent.h"
49 #include "core/frame/Deprecation.h" 49 #include "core/frame/Deprecation.h"
50 #include "core/frame/FrameConsole.h" 50 #include "core/frame/FrameConsole.h"
51 #include "core/frame/FrameHost.h"
52 #include "core/frame/LocalDOMWindow.h" 51 #include "core/frame/LocalDOMWindow.h"
53 #include "core/frame/LocalFrame.h" 52 #include "core/frame/LocalFrame.h"
54 #include "core/frame/Settings.h" 53 #include "core/frame/Settings.h"
55 #include "core/frame/UseCounter.h" 54 #include "core/frame/UseCounter.h"
56 #include "core/inspector/ConsoleMessage.h" 55 #include "core/inspector/ConsoleMessage.h"
57 #include "core/inspector/ConsoleMessageStorage.h" 56 #include "core/inspector/ConsoleMessageStorage.h"
58 #include "core/inspector/IdentifiersFactory.h" 57 #include "core/inspector/IdentifiersFactory.h"
59 #include "core/inspector/InspectedFrames.h" 58 #include "core/inspector/InspectedFrames.h"
60 #include "core/inspector/InspectorTaskRunner.h" 59 #include "core/inspector/InspectorTaskRunner.h"
61 #include "core/inspector/V8InspectorString.h" 60 #include "core/inspector/V8InspectorString.h"
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 context, nodes, index++, 463 context, nodes, index++,
465 ToV8(node, info.Holder(), info.GetIsolate())) 464 ToV8(node, info.Holder(), info.GetIsolate()))
466 .FromMaybe(false)) 465 .FromMaybe(false))
467 return; 466 return;
468 } 467 }
469 info.GetReturnValue().Set(nodes); 468 info.GetReturnValue().Set(nodes);
470 } 469 }
471 } 470 }
472 471
473 } // namespace blink 472 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698