Home | History | Annotate | Download | only in webkit

Lines Matching defs:WebHistoryItem

23  * of a WebView. Each WebHistoryItem is a snapshot of the requested history
27 public class WebHistoryItem implements Cloneable {
51 private WebHistoryItem() {
52 synchronized (WebHistoryItem.class) {
58 * Construct a new WebHistoryItem with initial flattened data.
61 /*package*/ WebHistoryItem(byte[] data) {
64 synchronized (WebHistoryItem.class) {
70 * Construct a clone of a WebHistoryItem from the given item.
73 private WebHistoryItem(WebHistoryItem item) {
202 protected synchronized WebHistoryItem clone() {
203 return new WebHistoryItem(this);