Chromium Code Reviews

Unified Diff: chrome/browser/certificate_viewer.cc

Issue 1391893003: NOT FOR REVIEW: Aura on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/certificate_viewer.cc
diff --git a/chrome/browser/certificate_viewer.cc b/chrome/browser/certificate_viewer.cc
index 4c2c6e6385f4e0987fff99b970f608c81928933e..23f4f5c5cbfde98d11d5aa2827a7d8e7bbcf597c 100644
--- a/chrome/browser/certificate_viewer.cc
+++ b/chrome/browser/certificate_viewer.cc
@@ -19,3 +19,13 @@ void ShowCertificateViewerByID(content::WebContents* web_contents,
}
ShowCertificateViewer(web_contents, parent, cert.get());
}
+
+#if defined(OS_ANDROID) && defined(USE_AURA)
+
+void ShowCertificateViewer(content::WebContents* web_contents,
+ gfx::NativeWindow parent,
+ net::X509Certificate* cert) {
+ NOTIMPLEMENTED();
+}
+
+#endif

Powered by Google App Engine