| Index: Source/modules/geolocation/PositionError.h
|
| diff --git a/Source/modules/geolocation/PositionError.h b/Source/modules/geolocation/PositionError.h
|
| index 072bc17721c40f1c38747ba7e81df2937063a455..d19b330d8d66d6ce22e928db738fbb799a5fbdc3 100644
|
| --- a/Source/modules/geolocation/PositionError.h
|
| +++ b/Source/modules/geolocation/PositionError.h
|
| @@ -20,48 +20,50 @@
|
| * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
| * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| #ifndef PositionError_h
|
| #define PositionError_h
|
|
|
| +#include "bindings/v8/ScriptWrappable.h"
|
| #include "wtf/PassRefPtr.h"
|
| #include "wtf/RefCounted.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace WebCore {
|
| -
|
| -class PositionError : public RefCounted<PositionError> {
|
| +
|
| +class PositionError : public RefCounted<PositionError>, public ScriptWrappable {
|
| public:
|
| enum ErrorCode {
|
| PERMISSION_DENIED = 1,
|
| POSITION_UNAVAILABLE = 2,
|
| TIMEOUT = 3
|
| };
|
| -
|
| +
|
| static PassRefPtr<PositionError> create(ErrorCode code, const String& message) { return adoptRef(new PositionError(code, message)); }
|
|
|
| ErrorCode code() const { return m_code; }
|
| const String& message() const { return m_message; }
|
| void setIsFatal(bool isFatal) { m_isFatal = isFatal; }
|
| bool isFatal() const { return m_isFatal; }
|
| -
|
| +
|
| private:
|
| - PositionError(ErrorCode code, const String& message)
|
| + PositionError(ErrorCode code, const String& message)
|
| : m_code(code)
|
| , m_message(message)
|
| , m_isFatal(false)
|
| {
|
| + ScriptWrappable::init(this);
|
| }
|
| -
|
| +
|
| ErrorCode m_code;
|
| String m_message;
|
| // Whether the error is fatal, such that no request can ever obtain a good
|
| // position fix in the future.
|
| bool m_isFatal;
|
| };
|
| -
|
| +
|
| } // namespace WebCore
|
|
|
| #endif // PositionError_h
|
|
|