blob: 5a2c7af50c528de8727a50586c4f7b1854def8b1 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef InspectorWebSocketEvents_h
#define InspectorWebSocketEvents_h
#include "core/inspector/InspectorTraceEvents.h"
#include "platform/EventTracer.h"
#include "platform/TraceEvent.h"
#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
#include "wtf/Functional.h"
namespace blink {
class Document;
class KURL;
class InspectorWebSocketCreateEvent {
STATIC_ONLY(InspectorWebSocketCreateEvent);
public:
static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Document*, unsigned long identifier, const KURL&, const String& protocol);
};
class InspectorWebSocketEvent {
STATIC_ONLY(InspectorWebSocketEvent);
public:
static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Document*, unsigned long identifier);
};
} // namespace blink
#endif // !defined(InspectorWebSocketEvents_h)