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

Side by Side Diff: third_party/WebKit/Source/web/InspectorOverlay.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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 18 matching lines...) Expand all
29 #include "web/InspectorOverlay.h" 29 #include "web/InspectorOverlay.h"
30 30
31 #include <memory> 31 #include <memory>
32 32
33 #include "bindings/core/v8/ScriptController.h" 33 #include "bindings/core/v8/ScriptController.h"
34 #include "bindings/core/v8/ScriptSourceCode.h" 34 #include "bindings/core/v8/ScriptSourceCode.h"
35 #include "bindings/core/v8/V8InspectorOverlayHost.h" 35 #include "bindings/core/v8/V8InspectorOverlayHost.h"
36 #include "core/dom/Node.h" 36 #include "core/dom/Node.h"
37 #include "core/dom/StaticNodeList.h" 37 #include "core/dom/StaticNodeList.h"
38 #include "core/dom/TaskRunnerHelper.h" 38 #include "core/dom/TaskRunnerHelper.h"
39 #include "core/frame/FrameHost.h"
40 #include "core/frame/FrameView.h" 39 #include "core/frame/FrameView.h"
41 #include "core/frame/LocalFrame.h" 40 #include "core/frame/LocalFrame.h"
42 #include "core/frame/LocalFrameClient.h" 41 #include "core/frame/LocalFrameClient.h"
43 #include "core/frame/Settings.h" 42 #include "core/frame/Settings.h"
44 #include "core/frame/VisualViewport.h" 43 #include "core/frame/VisualViewport.h"
45 #include "core/html/HTMLFrameOwnerElement.h" 44 #include "core/html/HTMLFrameOwnerElement.h"
46 #include "core/input/EventHandler.h" 45 #include "core/input/EventHandler.h"
47 #include "core/inspector/InspectorOverlayHost.h" 46 #include "core/inspector/InspectorOverlayHost.h"
48 #include "core/layout/api/LayoutViewItem.h" 47 #include "core/layout/api/LayoutViewItem.h"
49 #include "core/loader/EmptyClients.h" 48 #include "core/loader/EmptyClients.h"
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 bool InspectorOverlay::shouldSearchForNode() { 802 bool InspectorOverlay::shouldSearchForNode() {
804 return m_inspectMode != InspectorDOMAgent::NotSearching; 803 return m_inspectMode != InspectorDOMAgent::NotSearching;
805 } 804 }
806 805
807 void InspectorOverlay::inspect(Node* node) { 806 void InspectorOverlay::inspect(Node* node) {
808 if (m_domAgent) 807 if (m_domAgent)
809 m_domAgent->inspect(node); 808 m_domAgent->inspect(node);
810 } 809 }
811 810
812 } // namespace blink 811 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/InspectorEmulationAgent.cpp ('k') | third_party/WebKit/Source/web/ResizeViewportAnchor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698