Roll src/third_party/WebKit eac3800:0237a66 (svn 202606:202607)
[chromium-blink-merge.git] / components / web_view / frame_devtools_agent_delegate.h
blobb4c30fa3c08c52c313973f33457e588128363bc5
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_WEB_VIEW_FRAME_DEVTOOLS_AGENT_DELEGATE_H_
6 #define COMPONENTS_WEB_VIEW_FRAME_DEVTOOLS_AGENT_DELEGATE_H_
8 class GURL;
10 namespace web_view {
12 class FrameDevToolsAgentDelegate {
13 public:
14 virtual ~FrameDevToolsAgentDelegate() {}
16 virtual void HandlePageNavigateRequest(const GURL& url) = 0;
19 } // namespace web_view
21 #endif // COMPONENTS_WEB_VIEW_FRAME_DEVTOOLS_AGENT_DELEGATE_H_