| Index: blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpContents.java
|
| diff --git a/blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpContents.java b/blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpContents.java
|
| index 4cea10f78df254624c2f876fae19b7080edfb247..9ef13580e4cd84682c683c1474040710192a7421 100644
|
| --- a/blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpContents.java
|
| +++ b/blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpContents.java
|
| @@ -13,7 +13,7 @@ package org.chromium.blimp_public.contents;
|
| */
|
| public interface BlimpContents {
|
| /**
|
| - * Retrives the {@link BlimpNavigationController} that controls all navigation related
|
| + * Retrieves the {@link BlimpNavigationController} that controls all navigation related
|
| * to this BlimpContents.
|
| */
|
| BlimpNavigationController getNavigationController();
|
| @@ -33,4 +33,14 @@ public interface BlimpContents {
|
| * garbage collected.
|
| */
|
| void destroy();
|
| +
|
| + /**
|
| + * Shows this BlimpContents.
|
| + */
|
| + void show();
|
| +
|
| + /**
|
| + * Hide this BlimpContents.
|
| + */
|
| + void hide();
|
| }
|
|
|