| Index: chrome/android/java/src/org/chromium/chrome/browser/ntp/NewTabPagePrefs.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ntp/NewTabPagePrefs.java b/chrome/android/java/src/org/chromium/chrome/browser/ntp/NewTabPagePrefs.java
|
| index 7c6886a811b3c8d97cd0eeb8c7f760fb8fca77ef..7a0daac3e37ecf0dc9f28abd4e1299f2a723ca72 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/ntp/NewTabPagePrefs.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/ntp/NewTabPagePrefs.java
|
| @@ -31,24 +31,6 @@ class NewTabPagePrefs {
|
| }
|
|
|
| /**
|
| - * Sets whether the list of currently open tabs is collapsed (vs expanded) on the Recent Tabs
|
| - * page.
|
| - * @param isCollapsed Whether we want the currently open tabs list to be collapsed.
|
| - */
|
| - void setCurrentlyOpenTabsCollapsed(boolean isCollapsed) {
|
| - nativeSetCurrentlyOpenTabsCollapsed(mNativeNewTabPagePrefs, isCollapsed);
|
| - }
|
| -
|
| - /**
|
| - * Gets whether the list of currently open tabs is collapsed (vs expanded) on Recent Tabs page.
|
| - * @return Whether the list of currently open tabs is collapsed (vs expanded) on
|
| - * the Recent Tabs page.
|
| - */
|
| - boolean getCurrentlyOpenTabsCollapsed() {
|
| - return nativeGetCurrentlyOpenTabsCollapsed(mNativeNewTabPagePrefs);
|
| - }
|
| -
|
| - /**
|
| * Sets whether the list of snapshot documents is collapsed (vs expanded) on the Recent Tabs
|
| * page.
|
| * @param isCollapsed Whether we want the snapshot documents list to be collapsed.
|
| @@ -122,10 +104,6 @@ class NewTabPagePrefs {
|
|
|
| private static native long nativeInit(Profile profile);
|
| private static native void nativeDestroy(long nativeNewTabPagePrefs);
|
| - private static native void nativeSetCurrentlyOpenTabsCollapsed(
|
| - long nativeNewTabPagePrefs, boolean isCollapsed);
|
| - private static native boolean nativeGetCurrentlyOpenTabsCollapsed(
|
| - long nativeNewTabPagePrefs);
|
| private static native void nativeSetSnapshotDocumentCollapsed(
|
| long nativeNewTabPagePrefs, boolean isCollapsed);
|
| private static native boolean nativeGetSnapshotDocumentCollapsed(
|
|
|