Chromium Code Reviews| Index: chrome/browser/debugger/devtools_client_host.h |
| =================================================================== |
| --- chrome/browser/debugger/devtools_client_host.h (revision 69688) |
| +++ chrome/browser/debugger/devtools_client_host.h (working copy) |
| @@ -6,6 +6,8 @@ |
| #define CHROME_BROWSER_DEBUGGER_DEVTOOLS_CLIENT_HOST_H_ |
| #pragma once |
| +#include <string> |
| + |
| #include "base/basictypes.h" |
| namespace IPC { |
| @@ -34,6 +36,10 @@ |
| // closing. |
| virtual void InspectedTabClosing() = 0; |
| + // This method is called when tab inspected by this devtools client is |
| + // navigating to |url|. |
| + virtual void FrameNavigating(const std::string& url) {}; |
|
pfeldman
2011/01/18 16:03:48
This method can be a part of the devtools client i
Peter Rybin
2011/01/19 15:36:02
Done.
|
| + |
| // Sends the message to the devtools client hosted by this object. |
| virtual void SendMessageToClient(const IPC::Message& msg) = 0; |