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

Unified Diff: net/base/transport_security_state.h

Issue 10854063: Clean-up inline members of nested classes (net/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add a NET_EXPOR_PRIVATE Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/network_change_notifier_mac.cc ('k') | net/base/transport_security_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/transport_security_state.h
diff --git a/net/base/transport_security_state.h b/net/base/transport_security_state.h
index 2e4b42ee91cdebba8008da985b19f39ce1d9fee3..01c0a26448327b5baf87a0814eed4cdb39b1dca3 100644
--- a/net/base/transport_security_state.h
+++ b/net/base/transport_security_state.h
@@ -151,13 +151,10 @@ class NET_EXPORT TransportSecurityState
std::string domain;
};
- class Iterator {
+ class NET_EXPORT Iterator {
public:
- explicit Iterator(const TransportSecurityState& state)
- : iterator_(state.enabled_hosts_.begin()),
- end_(state.enabled_hosts_.end()) {
- }
- ~Iterator() {}
+ explicit Iterator(const TransportSecurityState& state);
+ ~Iterator();
bool HasNext() const { return iterator_ != end_; }
void Advance() { ++iterator_; }
« no previous file with comments | « net/base/network_change_notifier_mac.cc ('k') | net/base/transport_security_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698