Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/page_info/WebsiteSettingsPopup.java

Issue 2765733002: Rename Android Java pageinfo folder to page_info (matching other platforms). (Closed)
Patch Set: Rename Android Java pageinfo folder to page_info (matching other platforms). Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698