| Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| index eefb3af45ee831e3789999a6f445b496c64ea953..7776d20d4076529e1d691f67884cad19dda19724 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| @@ -58,12 +58,17 @@ import java.lang.annotation.Annotation;
|
| public class ContentViewCore implements MotionEventDelegate {
|
| private static final String TAG = ContentViewCore.class.getName();
|
|
|
| - // The following constants match the ones in content/public/common/page_transition_types.h
|
| - // Add more if you need them.
|
| + // Use PageTransitionLink class instead.
|
| + // TODO(boliu): Remove these.
|
| + @Deprecated
|
| public static final int PAGE_TRANSITION_LINK = 0;
|
| + @Deprecated
|
| public static final int PAGE_TRANSITION_TYPED = 1;
|
| + @Deprecated
|
| public static final int PAGE_TRANSITION_AUTO_BOOKMARK = 2;
|
| + @Deprecated
|
| public static final int PAGE_TRANSITION_START_PAGE = 6;
|
| + @Deprecated
|
| public static final int PAGE_TRANSITION_RELOAD = 8;
|
|
|
| // Used when ContentView implements a standalone View.
|
|
|