blob: 62db099f8b2981f405170a59175cb37f7ced6e2b [file] [log] [blame]
/*
* Copyright 2006, The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ANDROID_WEBKIT_WEBHISTORY_H
#define ANDROID_WEBKIT_WEBHISTORY_H
#include <jni.h>
#include <wtf/RefCounted.h>
#include <wtf/Vector.h>
namespace WebCore {
class HistoryItem;
}
namespace android {
class WebHistory {
public:
static jbyteArray Flatten(JNIEnv*, WTF::Vector<char>&, WebCore::HistoryItem*);
static void AddItem(JNIEnv*, jobject, WebCore::HistoryItem*);
static void RemoveItem(JNIEnv*, jobject, int);
static void UpdateHistoryIndex(JNIEnv*, jobject, int);
};
class WebHistoryItem : public WTF::RefCounted<WebHistoryItem> {
public:
WebHistoryItem(WebHistoryItem* parent)
: mParent(parent)
, mObject(NULL)
, mJVM(NULL)
, mScale(100)
, mTraversals(-1)
, mActive(false)
, mHistoryItem(NULL) {}
WebHistoryItem(JNIEnv*, jobject, WebCore::HistoryItem*);
~WebHistoryItem();
void updateHistoryItem(WebCore::HistoryItem* item);
void setScale(int s) { mScale = s; }
void setTraversals(int t) { mTraversals = t; }
void setActive() { mActive = true; }
void setParent(WebHistoryItem* parent) { mParent = parent; }
WebHistoryItem* parent() { return mParent.get(); }
int scale() { return mScale; }
int traversals() { return mTraversals; }
jobject object() { return mObject; }
WebCore::HistoryItem* historyItem() { return mHistoryItem; }
private:
RefPtr<WebHistoryItem> mParent;
jobject mObject;
JavaVM* mJVM;
int mScale;
int mTraversals;
bool mActive;
WebCore::HistoryItem* mHistoryItem;
};
};
#endif