blob: 23f92261a2ae4224b83d9fc6fe91f2ad822025ec (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/net/url_request_context_getter.h"
#include "net/url_request/url_request_context.h"
net::CookieStore* URLRequestContextGetter::GetCookieStore() {
return GetURLRequestContext()->cookie_store();
}
|