Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |