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

Side by Side Diff: net/http/transport_security_state.cc

Issue 2901103002: Fix closing namespace comments in //net. (Closed)
Patch Set: Rebase. Created 3 years, 7 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
« no previous file with comments | « net/http/proxy_connect_redirect_http_stream.cc ('k') | net/proxy/proxy_list_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/http/transport_security_state.h" 5 #include "net/http/transport_security_state.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <memory> 8 #include <memory>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 1817 matching lines...) Expand 10 before | Expand all | Expand 10 after
1828 1828
1829 TransportSecurityState::PKPStateIterator::PKPStateIterator( 1829 TransportSecurityState::PKPStateIterator::PKPStateIterator(
1830 const TransportSecurityState& state) 1830 const TransportSecurityState& state)
1831 : iterator_(state.enabled_pkp_hosts_.begin()), 1831 : iterator_(state.enabled_pkp_hosts_.begin()),
1832 end_(state.enabled_pkp_hosts_.end()) { 1832 end_(state.enabled_pkp_hosts_.end()) {
1833 } 1833 }
1834 1834
1835 TransportSecurityState::PKPStateIterator::~PKPStateIterator() { 1835 TransportSecurityState::PKPStateIterator::~PKPStateIterator() {
1836 } 1836 }
1837 1837
1838 } // namespace 1838 } // namespace net
OLDNEW
« no previous file with comments | « net/http/proxy_connect_redirect_http_stream.cc ('k') | net/proxy/proxy_list_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698