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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/page_info/ConnectionInfoPopup.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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.app.Dialog; 7 import android.app.Dialog;
8 import android.content.Context; 8 import android.content.Context;
9 import android.content.DialogInterface; 9 import android.content.DialogInterface;
10 import android.content.Intent; 10 import android.content.Intent;
11 import android.graphics.Color; 11 import android.graphics.Color;
12 import android.provider.Browser; 12 import android.provider.Browser;
13 import android.text.TextUtils; 13 import android.text.TextUtils;
14 import android.view.LayoutInflater; 14 import android.view.LayoutInflater;
15 import android.view.View; 15 import android.view.View;
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 public static void show(Context context, WebContents webContents) { 241 public static void show(Context context, WebContents webContents) {
242 new ConnectionInfoPopup(context, webContents); 242 new ConnectionInfoPopup(context, webContents);
243 } 243 }
244 244
245 private static native long nativeInit(ConnectionInfoPopup popup, 245 private static native long nativeInit(ConnectionInfoPopup popup,
246 WebContents webContents); 246 WebContents webContents);
247 private native void nativeDestroy(long nativeConnectionInfoPopupAndroid); 247 private native void nativeDestroy(long nativeConnectionInfoPopupAndroid);
248 private native void nativeResetCertDecisions( 248 private native void nativeResetCertDecisions(
249 long nativeConnectionInfoPopupAndroid, WebContents webContents); 249 long nativeConnectionInfoPopupAndroid, WebContents webContents);
250 } 250 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698