summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/android/jni/WebHistory.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/android/jni/WebHistory.h')
-rw-r--r--WebCore/platform/android/jni/WebHistory.h72
1 files changed, 0 insertions, 72 deletions
diff --git a/WebCore/platform/android/jni/WebHistory.h b/WebCore/platform/android/jni/WebHistory.h
deleted file mode 100644
index 62db099..0000000
--- a/WebCore/platform/android/jni/WebHistory.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * 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