Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / libaddressinput / src / java / src / com / android / i18n / addressinput / ClientCacheManager.java
index 0ee1816..8c2c312 100644 (file)
@@ -20,10 +20,10 @@ package com.android.i18n.addressinput;
  *  Used by AddressWidget to handle caching in client-specific ways.
  */
 public interface ClientCacheManager {
-    /** Get the data that is cached for the given key. */
-    public String get(String key);
-    /** Put the data for the given key into the cache. */
-    public void put(String key, String data);
-    /** Get the Url of the server that serves address metadata. */
-    public String getAddressServerUrl();
+  /** Get the data that is cached for the given key. */
+  public String get(String key);
+  /** Put the data for the given key into the cache. */
+  public void put(String key, String data);
+  /** Get the Url of the server that serves address metadata. */
+  public String getAddressServerUrl();
 }