193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)/* 293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * Copyright (C) 2010 Google Inc. All rights reserved. 393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * 493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without 593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * modification, are permitted provided that the following conditions 693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * are met: 793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * 893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * 1. Redistributions of source code must retain the above copyright 993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * notice, this list of conditions and the following disclaimer. 1093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * 2. Redistributions in binary form must reproduce the above copyright 1193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * notice, this list of conditions and the following disclaimer in the 1293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * documentation and/or other materials provided with the distribution. 1393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of 1493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * its contributors may be used to endorse or promote products derived 1593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * from this software without specific prior written permission. 1693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * 1793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY 1893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 1993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 2093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY 2193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 2293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 2393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 2493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 2693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) */ 2893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) 2993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#ifndef WebIDBDatabaseError_h 3093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#define WebIDBDatabaseError_h 3193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) 3293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#include "WebCommon.h" 3393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#include "WebPrivatePtr.h" 3493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#include "WebString.h" 3593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) 3651b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)namespace blink { 3793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) 38e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)class DOMError; 39e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles) 4093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)// See comment in WebIDBFactory for a high level overview these classes. 4193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)class WebIDBDatabaseError { 4293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)public: 4393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) ~WebIDBDatabaseError() { reset(); } 4493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) 4593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) WebIDBDatabaseError(unsigned short code) { assign(code); } 4693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) WebIDBDatabaseError(unsigned short code, const WebString& message) { assign(code, message); } 4793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) WebIDBDatabaseError(const WebIDBDatabaseError& error) { assign(error); } 4893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) WebIDBDatabaseError& operator=(const WebIDBDatabaseError& error) 4993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) { 5093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) assign(error); 5193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) return *this; 5293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) } 5393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) 5406f816c7c76bc45a15e452ade8a34e8af077693eTorne (Richard Coles) BLINK_EXPORT void assign(const WebIDBDatabaseError&); 5506f816c7c76bc45a15e452ade8a34e8af077693eTorne (Richard Coles) BLINK_EXPORT void reset(); 5693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) 5706f816c7c76bc45a15e452ade8a34e8af077693eTorne (Richard Coles)#if BLINK_IMPLEMENTATION 58e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles) operator PassRefPtrWillBeRawPtr<DOMError>() const; 5993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#endif 6093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) 6193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)private: 6206f816c7c76bc45a15e452ade8a34e8af077693eTorne (Richard Coles) BLINK_EXPORT void assign(unsigned short code); 6306f816c7c76bc45a15e452ade8a34e8af077693eTorne (Richard Coles) BLINK_EXPORT void assign(unsigned short code, const WebString& message); 6493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) 65e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles) WebPrivatePtr<DOMError> m_private; 6693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)}; 6793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) 6851b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)} // namespace blink 6993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) 7093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#endif // WebIDBDatabaseError_h 71