| Index: chrome/browser/automation/testing_automation_provider.cc
|
| ===================================================================
|
| --- chrome/browser/automation/testing_automation_provider.cc (revision 98481)
|
| +++ chrome/browser/automation/testing_automation_provider.cc (working copy)
|
| @@ -1468,11 +1468,12 @@
|
| }
|
| }
|
|
|
| -void TestingAutomationProvider::GetSecurityState(int handle,
|
| - bool* success,
|
| - SecurityStyle* security_style,
|
| - int* ssl_cert_status,
|
| - int* insecure_content_status) {
|
| +void TestingAutomationProvider::GetSecurityState(
|
| + int handle,
|
| + bool* success,
|
| + SecurityStyle* security_style,
|
| + net::CertStatus* ssl_cert_status,
|
| + int* insecure_content_status) {
|
| if (tab_tracker_->ContainsHandle(handle)) {
|
| NavigationController* tab = tab_tracker_->GetResource(handle);
|
| NavigationEntry* entry = tab->GetActiveEntry();
|
| @@ -1483,7 +1484,7 @@
|
| } else {
|
| *success = false;
|
| *security_style = SECURITY_STYLE_UNKNOWN;
|
| - *ssl_cert_status = 0;
|
| + *ssl_cert_status = net::CERT_STATUS_NO_ERROR;
|
| *insecure_content_status = 0;
|
| }
|
| }
|
|
|