HomeSort by relevance Sort by last modified time
    Searched defs:ErrorResponse (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/dbus/
message.h 224 // ErrorResponse is a type of message used to return an error to the
226 class CHROME_DBUS_EXPORT ErrorResponse: public Response {
230 static scoped_ptr<ErrorResponse> FromRawMessage(DBusMessage* raw_message);
232 // Returns a newly created ErrorResponse from the given method call, the
236 static scoped_ptr<ErrorResponse> FromMethodCall(
242 // Creates an ErrorResponse message. The internal raw message is NULL.
243 ErrorResponse();
245 DISALLOW_COPY_AND_ASSIGN(ErrorResponse);
message.cc 425 // ErrorResponse implementation.
428 ErrorResponse::ErrorResponse() : Response() {
431 scoped_ptr<ErrorResponse> ErrorResponse::FromRawMessage(
435 scoped_ptr<ErrorResponse> response(new ErrorResponse);
440 scoped_ptr<ErrorResponse> ErrorResponse::FromMethodCall(
444 scoped_ptr<ErrorResponse> response(new ErrorResponse)
    [all...]

Completed in 63 milliseconds