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

Unified Diff: net/quic/crypto/source_address_token.h

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: net/quic/crypto/source_address_token.h
diff --git a/net/quic/crypto/source_address_token.h b/net/quic/crypto/source_address_token.h
index fbb50b1028e5b809cd61abf0c46f7d12c4bf92f2..317095892099488a0e3c787b8583a9ea4fb60393 100644
--- a/net/quic/crypto/source_address_token.h
+++ b/net/quic/crypto/source_address_token.h
@@ -22,21 +22,13 @@ class SourceAddressToken {
bool ParseFromArray(const char* plaintext, size_t plaintext_length);
- std::string ip() const {
- return ip_;
- }
+ std::string ip() const { return ip_; }
- int64 timestamp() const {
- return timestamp_;
- }
+ int64 timestamp() const { return timestamp_; }
- void set_ip(base::StringPiece ip) {
- ip_ = ip.as_string();
- }
+ void set_ip(base::StringPiece ip) { ip_ = ip.as_string(); }
- void set_timestamp(int64 timestamp) {
- timestamp_ = timestamp;
- }
+ void set_timestamp(int64 timestamp) { timestamp_ = timestamp; }
private:
std::string ip_;

Powered by Google App Engine
This is Rietveld 408576698