Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(417)

Side by Side Diff: net/url_request/const_http_accept_language_and_charset.cc

Issue 10918279: Provide mutable members of UrlRequestContext via pure-virtual interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address erikwright's second round of comments. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "net/url_request/const_http_accept_language_and_charset.h"
6
7 namespace net {
8
9 ConstHttpAcceptLanguageAndCharset::ConstHttpAcceptLanguageAndCharset(
10 const std::string& accept_language, const std::string& accept_charset)
mmenke 2012/09/26 16:28:20 This should be indented 4 spaces (The indentation
11 : accept_language_(accept_language),
12 accept_charset_(accept_charset) {
13 }
14
15 const std::string& ConstHttpAcceptLanguageAndCharset::GetAcceptLanguage() {
16 return accept_language_;
17 }
18
19 const std::string& ConstHttpAcceptLanguageAndCharset::GetAcceptCharset() {
20 return accept_charset_;
21 }
22
23 } // namespace net
24
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698