| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |