18e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project/*
28e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Copyright (C) 2007 Apple Inc.  All rights reserved.
38e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
48e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Redistribution and use in source and binary forms, with or without
58e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * modification, are permitted provided that the following conditions
68e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * are met:
78e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 1. Redistributions of source code must retain the above copyright
88e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer.
98e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 2. Redistributions in binary form must reproduce the above copyright
108e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer in the
118e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    documentation and/or other materials provided with the distribution.
128e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
138e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
148e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
158e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
168e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
178e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
188e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
198e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
208e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
218e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
228e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
238e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
248e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project */
258e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
268e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#ifndef History_h
278e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#define History_h
288e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
29643ca7872b450ea4efacab6188849e5aac2ba161Steve Block#include "KURL.h"
308e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#include <wtf/PassRefPtr.h>
318e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#include <wtf/RefCounted.h>
328e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
338e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectnamespace WebCore {
348e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
35643ca7872b450ea4efacab6188849e5aac2ba161Steve Blockclass Frame;
36643ca7872b450ea4efacab6188849e5aac2ba161Steve Blockclass SerializedScriptValue;
37643ca7872b450ea4efacab6188849e5aac2ba161Steve Blockclass String;
38643ca7872b450ea4efacab6188849e5aac2ba161Steve Blocktypedef int ExceptionCode;
398e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
40643ca7872b450ea4efacab6188849e5aac2ba161Steve Blockclass History : public RefCounted<History> {
41643ca7872b450ea4efacab6188849e5aac2ba161Steve Blockpublic:
42643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    static PassRefPtr<History> create(Frame* frame) { return adoptRef(new History(frame)); }
43643ca7872b450ea4efacab6188849e5aac2ba161Steve Block
44643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    Frame* frame() const;
45643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    void disconnectFrame();
468e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
47643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    unsigned length() const;
48643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    void back();
49643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    void forward();
50643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    void go(int distance);
518e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
52643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    enum StateObjectType {
53643ca7872b450ea4efacab6188849e5aac2ba161Steve Block        StateObjectPush,
54643ca7872b450ea4efacab6188849e5aac2ba161Steve Block        StateObjectReplace
558e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    };
56643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    void stateObjectAdded(PassRefPtr<SerializedScriptValue>, const String& title, const String& url, StateObjectType, ExceptionCode&);
57643ca7872b450ea4efacab6188849e5aac2ba161Steve Block
58643ca7872b450ea4efacab6188849e5aac2ba161Steve Blockprivate:
59643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    History(Frame*);
60643ca7872b450ea4efacab6188849e5aac2ba161Steve Block
61643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    KURL urlForState(const String& url);
62643ca7872b450ea4efacab6188849e5aac2ba161Steve Block
63643ca7872b450ea4efacab6188849e5aac2ba161Steve Block    Frame* m_frame;
64643ca7872b450ea4efacab6188849e5aac2ba161Steve Block};
658e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
668e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project} // namespace WebCore
678e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
688e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#endif // History_h
69