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

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: 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
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..3b822f26c9d8d8bd7ee307f44ed22309d8104866 100644
--- a/net/base/transport_security_state.h
+++ b/net/base/transport_security_state.h
@@ -153,11 +153,8 @@ class NET_EXPORT TransportSecurityState
class 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_; }

Powered by Google App Engine
This is Rietveld 408576698