| Index: chrome/browser/profiles/profile_impl.cc
|
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
|
| index 25e3eb541e84c6b8ddb2a3edf250c47813ef3029..770ff7d0daf0b73da99387de4d2998aa219aef2c 100644
|
| --- a/chrome/browser/profiles/profile_impl.cc
|
| +++ b/chrome/browser/profiles/profile_impl.cc
|
| @@ -67,6 +67,8 @@
|
| #include "chrome/browser/services/gcm/gcm_profile_service_factory.h"
|
| #include "chrome/browser/services/gcm/push_messaging_service_impl.h"
|
| #include "chrome/browser/sessions/session_service_factory.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/startup/startup_browser_creator.h"
|
| #include "chrome/common/chrome_constants.h"
|
| #include "chrome/common/chrome_paths_internal.h"
|
| @@ -1059,6 +1061,10 @@ content::PushMessagingService* ProfileImpl::GetPushMessagingService() {
|
| this)->push_messaging_service();
|
| }
|
|
|
| +content::SSLHostStateDelegate* ProfileImpl::GetSSLHostStateDelegate() {
|
| + return ChromeSSLHostStateDelegateFactory::GetForProfile(this);
|
| +}
|
| +
|
| bool ProfileImpl::IsSameProfile(Profile* profile) {
|
| if (profile == static_cast<Profile*>(this))
|
| return true;
|
|
|