| Index: chrome/browser/ui/webui/options/advanced_options_utils_win.cc
|
| ===================================================================
|
| --- chrome/browser/ui/webui/options/advanced_options_utils_win.cc (revision 99456)
|
| +++ chrome/browser/ui/webui/options/advanced_options_utils_win.cc (working copy)
|
| @@ -62,6 +62,10 @@
|
| CRYPTUI_CERT_MGR_STRUCT cert_mgr = { 0 };
|
| cert_mgr.dwSize = sizeof(CRYPTUI_CERT_MGR_STRUCT);
|
| cert_mgr.hwndParent =
|
| - tab_contents->view()->GetTopLevelNativeWindow();
|
| +#if defined(USE_AURA)
|
| + NULL;
|
| +#else
|
| + tab_contents->view()->GetTopLevelNativeWindow();
|
| +#endif
|
| ::CryptUIDlgCertMgr(&cert_mgr);
|
| }
|
|
|