| Index: chrome/browser/profiles/profile_impl.cc
|
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
|
| index bb52a9717c8658cb0bbc184f1eb7382ea80f122f..66f74187316e7ecbe9fd4baa6344f77f2428ae3b 100644
|
| --- a/chrome/browser/profiles/profile_impl.cc
|
| +++ b/chrome/browser/profiles/profile_impl.cc
|
| @@ -70,6 +70,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_decisions.h"
|
| +#include "chrome/browser/ssl/chrome_ssl_host_state_decisions_factory.h"
|
| #include "chrome/browser/ui/startup/startup_browser_creator.h"
|
| #include "chrome/browser/ui/webui/extensions/extension_icon_source.h"
|
| #include "chrome/common/chrome_constants.h"
|
| @@ -1037,6 +1039,10 @@ content::PushMessagingService* ProfileImpl::GetPushMessagingService() {
|
| this)->push_messaging_service();
|
| }
|
|
|
| +content::SSLHostStateDecisions* ProfileImpl::GetSSLHostStateDecisions() {
|
| + return ChromeSSLHostStateDecisionsFactory::GetForProfile(this);
|
| +}
|
| +
|
| bool ProfileImpl::IsSameProfile(Profile* profile) {
|
| if (profile == static_cast<Profile*>(this))
|
| return true;
|
|
|