15267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)/* 25267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * Copyright (C) 2010 Google Inc. All rights reserved. 35267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * 45267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * Redistribution and use in source and binary forms, with or without 55267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * modification, are permitted provided that the following conditions 65267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * are met: 75267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * 85267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * 1. Redistributions of source code must retain the above copyright 95267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * notice, this list of conditions and the following disclaimer. 105267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * 2. Redistributions in binary form must reproduce the above copyright 115267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * notice, this list of conditions and the following disclaimer in the 125267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * documentation and/or other materials provided with the distribution. 135267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * 145267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY 155267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 165267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 175267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY 185267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 195267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 205267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 215267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 225267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 235267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 245267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) */ 255267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) 265267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)#ifndef WebGeolocationPermissionRequestManager_h 275267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)#define WebGeolocationPermissionRequestManager_h 285267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) 295267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)#include "../platform/WebNonCopyable.h" 305267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)#include "../platform/WebPrivateOwnPtr.h" 315267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) 3251b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)namespace blink { 335267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) 345267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)class WebGeolocationPermissionRequest; 355267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)class WebGeolocationPermissionRequestManagerPrivate; 365267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) 375267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)// This class is used to map between integer identifiers and WebGeolocationPermissionRequest 385267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)// instances. The intended usage is that on WebGeolocationClient::requestPermission(), 395267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)// the implementer can call add() to associate an id with the WebGeolocationPermissionRequest object. 405267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)// Once the permission request has been decided, the second remove() method can be used to 415267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)// find the request. On WebGeolocationClient::cancelPermissionRequest, the first remove() method will 425267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)// remove the association with the id. 435267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)class WebGeolocationPermissionRequestManager : public WebNonCopyable { 445267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)public: 455267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) WebGeolocationPermissionRequestManager() { init(); } 465267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) ~WebGeolocationPermissionRequestManager() { reset(); } 475267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) 48e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles) BLINK_EXPORT int add(const WebGeolocationPermissionRequest&); 49e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles) BLINK_EXPORT bool remove(const WebGeolocationPermissionRequest&, int&); 50e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles) BLINK_EXPORT bool remove(int, WebGeolocationPermissionRequest&); 515267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) 525267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)private: 5306f816c7c76bc45a15e452ade8a34e8af077693eTorne (Richard Coles) BLINK_EXPORT void init(); 5406f816c7c76bc45a15e452ade8a34e8af077693eTorne (Richard Coles) BLINK_EXPORT void reset(); 555267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) 565267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) WebPrivateOwnPtr<WebGeolocationPermissionRequestManagerPrivate> m_private; 575267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)}; 585267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) 595267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)} 605267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) 615267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)#endif // WebGeolocationPermissionRequestManager_h 625267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles) 63