Home | History | Annotate | Download | only in inspector

Lines Matching refs:protocol

76 protocol::Response toProtocolValue(v8::Local<v8::Context> context,
78 std::unique_ptr<protocol::Value>* result) {
79 using protocol::Response;
89 *result = protocol::Value::null();
94 protocol::FundamentalValue::create(value.As<v8::Boolean>()->Value());
101 *result = protocol::FundamentalValue::create(intValue);
104 *result = protocol::FundamentalValue::create(doubleValue);
109 protocol::StringValue::create(toProtocolString(value.As<v8::String>()));
114 std::unique_ptr<protocol::ListValue> inspectorArray =
115 protocol::ListValue::create();
121 std::unique_ptr<protocol::Value> element;
130 std::unique_ptr<protocol::DictionaryValue> jsonObject =
131 protocol::DictionaryValue::create();
153 std::unique_ptr<protocol::Value> propertyValue;
200 protocol::Response toProtocolValue(v8::Local<v8::Context> context,
202 std::unique_ptr<protocol::Value>* result) {