| Index: third_party/WebKit/Source/platform/inspector_protocol/FrontendChannel.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorFrontendChannel.h b/third_party/WebKit/Source/platform/inspector_protocol/FrontendChannel.h
|
| similarity index 89%
|
| rename from third_party/WebKit/Source/core/inspector/InspectorFrontendChannel.h
|
| rename to third_party/WebKit/Source/platform/inspector_protocol/FrontendChannel.h
|
| index 580a12d3e18aa84dbdb4cebae4b7ba239f6d67e8..530d50e006c465e3cd5f8f28b053489fd5e5cb12 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorFrontendChannel.h
|
| +++ b/third_party/WebKit/Source/platform/inspector_protocol/FrontendChannel.h
|
| @@ -23,22 +23,24 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#ifndef InspectorFrontendChannel_h
|
| -#define InspectorFrontendChannel_h
|
| +#ifndef FrontendChannel_h
|
| +#define FrontendChannel_h
|
|
|
| #include "platform/JSONValues.h"
|
| #include "wtf/Forward.h"
|
|
|
| namespace blink {
|
| +namespace protocol {
|
|
|
| -class InspectorFrontendChannel {
|
| +class FrontendChannel {
|
| public:
|
| - virtual ~InspectorFrontendChannel() { }
|
| + virtual ~FrontendChannel() { }
|
| virtual void sendProtocolResponse(int sessionId, int callId, PassRefPtr<JSONObject> message) = 0;
|
| virtual void sendProtocolNotification(PassRefPtr<JSONObject> message) = 0;
|
| virtual void flush() = 0;
|
| };
|
|
|
| +} // namespace protocol
|
| } // namespace blink
|
|
|
| -#endif // !defined(InspectorFrontendChannel_h)
|
| +#endif // !defined(FrontendChannel_h)
|
|
|