Chromium Code Reviews| Index: content/browser/browser_context.cc |
| diff --git a/content/browser/browser_context.cc b/content/browser/browser_context.cc |
| index 156238613c3b1f55a0bd4e34ec558313c90a655f..2ce6ab2bb9063599b00c9ac735db3cccba3cf52e 100644 |
| --- a/content/browser/browser_context.cc |
| +++ b/content/browser/browser_context.cc |
| @@ -17,8 +17,8 @@ |
| #include "content/public/browser/site_instance.h" |
| #include "net/cookies/cookie_monster.h" |
| #include "net/cookies/cookie_store.h" |
| -#include "net/ssl/server_bound_cert_service.h" |
| -#include "net/ssl/server_bound_cert_store.h" |
| +#include "net/ssl/channel_id_service.h" |
| +#include "net/ssl/channel_id_store.h" |
| #include "net/url_request/url_request_context.h" |
| #include "net/url_request/url_request_context_getter.h" |
| #include "webkit/browser/database/database_tracker.h" |
| @@ -73,7 +73,7 @@ void SaveSessionStateOnIOThread( |
| net::URLRequestContext* context = context_getter->GetURLRequestContext(); |
| context->cookie_store()->GetCookieMonster()-> |
| SetForceKeepSessionState(); |
| - context->server_bound_cert_service()->GetCertStore()-> |
| + context->channel_id_service()->GetCertStore()-> |
|
wtc
2014/07/01 19:50:52
GetCertStore => GetChannelIDStore
Ryan Hamilton
2014/07/21 19:12:08
Done.
|
| SetForceKeepSessionState(); |
| appcache_service->set_force_keep_session_state(); |
| } |