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

Unified Diff: Source/core/inspector/InspectorController.cpp

Issue 257873002: DevTools: do not use internals for highlight testing, use protocol instead. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/inspector/InspectorController.h ('k') | Source/core/inspector/InspectorOverlay.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorController.cpp
diff --git a/Source/core/inspector/InspectorController.cpp b/Source/core/inspector/InspectorController.cpp
index 383415730d1cc92800f717bc2e76ffea6624debb..12c5653b5cf74eb4169957362f1bdabef0598383 100644
--- a/Source/core/inspector/InspectorController.cpp
+++ b/Source/core/inspector/InspectorController.cpp
@@ -294,11 +294,6 @@ void InspectorController::drawHighlight(GraphicsContext& context) const
m_overlay->paint(context);
}
-void InspectorController::getHighlight(Highlight* highlight) const
-{
- m_overlay->getHighlight(highlight);
-}
-
void InspectorController::inspect(Node* node)
{
if (!node)
@@ -331,16 +326,6 @@ void InspectorController::dispatchMessageFromFrontend(const String& message)
m_inspectorBackendDispatcher->dispatch(message);
}
-void InspectorController::hideHighlight()
-{
- m_overlay->hideHighlight();
-}
-
-Node* InspectorController::highlightedNode() const
-{
- return m_overlay->highlightedNode();
-}
-
bool InspectorController::handleGestureEvent(LocalFrame* frame, const PlatformGestureEvent& event)
{
// Overlay should not consume events.
« no previous file with comments | « Source/core/inspector/InspectorController.h ('k') | Source/core/inspector/InspectorOverlay.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698