1package org.robolectric.shadows;
2
3import org.robolectric.annotation.Implementation;
4import org.robolectric.annotation.Implements;
5
6@Implements(className = "android.webkit.WebSyncManager")
7public class ShadowWebSyncManager {
8  protected boolean synced = false;
9
10  @Implementation
11  public void sync() {
12    synced = true;
13  }
14
15  public boolean synced() {
16    return synced;
17  }
18
19  public void reset() {
20    synced = false;
21  }
22}
23