| Index: chrome/browser/ssl/chrome_ssl_host_state_delegate_test.cc
|
| diff --git a/chrome/browser/ssl/chrome_ssl_host_state_delegate_test.cc b/chrome/browser/ssl/chrome_ssl_host_state_delegate_test.cc
|
| index dfa4f512084ceff114b5c184e2d86b3c66ed34ff..7d6f8da5779465826433c01c90a45cf93236f026 100644
|
| --- a/chrome/browser/ssl/chrome_ssl_host_state_delegate_test.cc
|
| +++ b/chrome/browser/ssl/chrome_ssl_host_state_delegate_test.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "chrome/browser/ssl/chrome_ssl_host_state_delegate.h"
|
| +
|
| #include <stdint.h>
|
|
|
| #include "base/command_line.h"
|
| @@ -11,7 +13,6 @@
|
| #include "chrome/browser/browsing_data/browsing_data_remover.h"
|
| #include "chrome/browser/browsing_data/browsing_data_remover_test_util.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| -#include "chrome/browser/ssl/chrome_ssl_host_state_delegate.h"
|
| #include "chrome/browser/ssl/chrome_ssl_host_state_delegate_factory.h"
|
| #include "chrome/browser/ui/browser.h"
|
| #include "chrome/browser/ui/tabs/tab_strip_model.h"
|
| @@ -32,9 +33,9 @@ const char kWWWGoogleHost[] = "www.google.com";
|
| const char kGoogleHost[] = "google.com";
|
| const char kExampleHost[] = "example.com";
|
|
|
| -const char* kForgetAtSessionEnd = "-1";
|
| -const char* kForgetInstantly = "0";
|
| -const char* kDeltaSecondsString = "86400";
|
| +const char kForgetAtSessionEnd[] = "-1";
|
| +const char kForgetInstantly[] = "0";
|
| +const char kDeltaSecondsString[] = "86400";
|
| const uint64_t kDeltaOneDayInSeconds = UINT64_C(86400);
|
|
|
| scoped_refptr<net::X509Certificate> GetGoogleCert() {
|
|
|