blob: 65729140616ef76f6e96d593aa200ed7a238e1b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// 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.
#include "modules/websockets/InspectorWebSocketEvents.h"
#include "core/dom/Document.h"
#include "platform/weborigin/KURL.h"
namespace blink {
PassOwnPtr<TracedValue> InspectorWebSocketCreateEvent::data(Document* document, unsigned long identifier, const KURL& url, const String& protocol)
{
OwnPtr<TracedValue> value = TracedValue::create();
value->setInteger("identifier", identifier);
value->setString("url", url.string());
value->setString("frame", toHexString(document->frame()));
if (!protocol.isNull())
value->setString("webSocketProtocol", protocol);
setCallStack(value.get());
return value.release();
}
PassOwnPtr<TracedValue> InspectorWebSocketEvent::data(Document* document, unsigned long identifier)
{
OwnPtr<TracedValue> value = TracedValue::create();
value->setInteger("identifier", identifier);
value->setString("frame", toHexString(document->frame()));
setCallStack(value.get());
return value.release();
}
} // namespace blink
|