OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/websockets/websocket_extension.h" | 5 #include "net/websockets/websocket_extension.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 | 10 |
11 namespace net { | 11 namespace net { |
12 | 12 |
13 WebSocketExtension::Parameter::Parameter(const std::string& name) | 13 WebSocketExtension::Parameter::Parameter(const std::string& name) |
14 : name_(name) {} | 14 : name_(name) { |
| 15 } |
15 | 16 |
16 WebSocketExtension::Parameter::Parameter(const std::string& name, | 17 WebSocketExtension::Parameter::Parameter(const std::string& name, |
17 const std::string& value) | 18 const std::string& value) |
18 : name_(name), value_(value) { | 19 : name_(name), value_(value) { |
19 DCHECK(!value.empty()); | 20 DCHECK(!value.empty()); |
20 } | 21 } |
21 | 22 |
22 bool WebSocketExtension::Parameter::Equals(const Parameter& other) const { | 23 bool WebSocketExtension::Parameter::Equals(const Parameter& other) const { |
23 return name_ == other.name_ && value_ == other.value_; | 24 return name_ == other.name_ && value_ == other.value_; |
24 } | 25 } |
25 | 26 |
26 WebSocketExtension::WebSocketExtension() {} | 27 WebSocketExtension::WebSocketExtension() { |
| 28 } |
27 | 29 |
28 WebSocketExtension::WebSocketExtension(const std::string& name) | 30 WebSocketExtension::WebSocketExtension(const std::string& name) : name_(name) { |
29 : name_(name) {} | 31 } |
30 | 32 |
31 WebSocketExtension::~WebSocketExtension() {} | 33 WebSocketExtension::~WebSocketExtension() { |
| 34 } |
32 | 35 |
33 bool WebSocketExtension::Equals(const WebSocketExtension& other) const { | 36 bool WebSocketExtension::Equals(const WebSocketExtension& other) const { |
34 if (name_ != other.name_) return false; | 37 if (name_ != other.name_) |
35 if (parameters_.size() != other.parameters_.size()) return false; | 38 return false; |
| 39 if (parameters_.size() != other.parameters_.size()) |
| 40 return false; |
36 for (size_t i = 0; i < other.parameters_.size(); ++i) { | 41 for (size_t i = 0; i < other.parameters_.size(); ++i) { |
37 if (!parameters_[i].Equals(other.parameters_[i])) | 42 if (!parameters_[i].Equals(other.parameters_[i])) |
38 return false; | 43 return false; |
39 } | 44 } |
40 return true; | 45 return true; |
41 } | 46 } |
42 | 47 |
43 } // namespace net | 48 } // namespace net |
OLD | NEW |