| Index: net/url_request/url_request_context.cc
|
| diff --git a/net/url_request/url_request_context.cc b/net/url_request/url_request_context.cc
|
| index 8e0f3bd7d6a27db94b8a2b421911b093a002ab9f..6eb075cc3e7ec97a69f6f0a4c5beff36ef03891b 100644
|
| --- a/net/url_request/url_request_context.cc
|
| +++ b/net/url_request/url_request_context.cc
|
| @@ -25,6 +25,10 @@ URLRequestContext::URLRequestContext()
|
| is_main_(false) {
|
| }
|
|
|
| +void URLRequestContext::set_cookie_store(CookieStore* cookie_store) {
|
| + cookie_store_ = cookie_store;
|
| +}
|
| +
|
| const std::string& URLRequestContext::GetUserAgent(const GURL& url) const {
|
| return EmptyString();
|
| }
|
| @@ -32,8 +36,4 @@ const std::string& URLRequestContext::GetUserAgent(const GURL& url) const {
|
| URLRequestContext::~URLRequestContext() {
|
| }
|
|
|
| -void URLRequestContext::set_cookie_store(CookieStore* cookie_store) {
|
| - cookie_store_ = cookie_store;
|
| -}
|
| -
|
| } // namespace net
|
|
|