1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef WebPresentationError_h
6 #define WebPresentationError_h
8 #include "public/platform/WebString.h"
12 struct WebPresentationError
{
14 ErrorTypeNoAvailableScreens
= 0,
15 ErrorTypeSessionRequestCancelled
,
16 ErrorTypeNoPresentationFound
,
17 ErrorTypeAvailabilityNotSupported
,
19 ErrorTypeLast
= ErrorTypeUnknown
22 WebPresentationError(ErrorType errorType
, const WebString
& message
)
23 : errorType(errorType
)
34 #endif // WebPresentationError_h