| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.chrome.browser.pageinfo; | 5 package org.chromium.chrome.browser.page_info; |
| 6 | 6 |
| 7 import android.animation.Animator; | 7 import android.animation.Animator; |
| 8 import android.animation.AnimatorListenerAdapter; | 8 import android.animation.AnimatorListenerAdapter; |
| 9 import android.animation.AnimatorSet; | 9 import android.animation.AnimatorSet; |
| 10 import android.animation.ObjectAnimator; | 10 import android.animation.ObjectAnimator; |
| 11 import android.app.Activity; | 11 import android.app.Activity; |
| 12 import android.app.Dialog; | 12 import android.app.Dialog; |
| 13 import android.content.ActivityNotFoundException; | 13 import android.content.ActivityNotFoundException; |
| 14 import android.content.ClipData; | 14 import android.content.ClipData; |
| 15 import android.content.ClipboardManager; | 15 import android.content.ClipboardManager; |
| (...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 971 new WebsiteSettingsPopup(activity, tab, offlinePageCreationDate, content
Publisher); | 971 new WebsiteSettingsPopup(activity, tab, offlinePageCreationDate, content
Publisher); |
| 972 } | 972 } |
| 973 | 973 |
| 974 private static native long nativeInit(WebsiteSettingsPopup popup, WebContent
s webContents); | 974 private static native long nativeInit(WebsiteSettingsPopup popup, WebContent
s webContents); |
| 975 | 975 |
| 976 private native void nativeDestroy(long nativeWebsiteSettingsPopupAndroid); | 976 private native void nativeDestroy(long nativeWebsiteSettingsPopupAndroid); |
| 977 | 977 |
| 978 private native void nativeRecordWebsiteSettingsAction( | 978 private native void nativeRecordWebsiteSettingsAction( |
| 979 long nativeWebsiteSettingsPopupAndroid, int action); | 979 long nativeWebsiteSettingsPopupAndroid, int action); |
| 980 } | 980 } |
| OLD | NEW |