OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <string> | 5 #include <string> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/ref_counted.h" | 8 #include "base/ref_counted.h" |
9 #include "base/string_split.h" | 9 #include "base/string_split.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 struct addrinfo addr; | 215 struct addrinfo addr; |
216 memset(&addr, 0, sizeof(struct addrinfo)); | 216 memset(&addr, 0, sizeof(struct addrinfo)); |
217 addr.ai_family = AF_INET; | 217 addr.ai_family = AF_INET; |
218 addr.ai_addrlen = sizeof(struct sockaddr_in); | 218 addr.ai_addrlen = sizeof(struct sockaddr_in); |
219 struct sockaddr_in sa_in; | 219 struct sockaddr_in sa_in; |
220 memset(&sa_in, 0, sizeof(struct sockaddr_in)); | 220 memset(&sa_in, 0, sizeof(struct sockaddr_in)); |
221 memcpy(&sa_in.sin_addr, "\x7f\0\0\1", 4); | 221 memcpy(&sa_in.sin_addr, "\x7f\0\0\1", 4); |
222 addr.ai_addr = reinterpret_cast<sockaddr*>(&sa_in); | 222 addr.ai_addr = reinterpret_cast<sockaddr*>(&sa_in); |
223 addr.ai_next = NULL; | 223 addr.ai_next = NULL; |
224 websocket_->addresses_.Copy(&addr, true); | 224 websocket_->addresses_.Copy(&addr, true); |
225 Singleton<WebSocketThrottle>::get()->PutInQueue(websocket_); | 225 WebSocketThrottle::GetInstance()->PutInQueue(websocket_); |
226 } | 226 } |
227 WebSocketJob::State GetWebSocketJobState() { | 227 WebSocketJob::State GetWebSocketJobState() { |
228 return websocket_->state_; | 228 return websocket_->state_; |
229 } | 229 } |
230 void CloseWebSocketJob() { | 230 void CloseWebSocketJob() { |
231 if (websocket_->socket_) { | 231 if (websocket_->socket_) { |
232 websocket_->socket_->DetachDelegate(); | 232 websocket_->socket_->DetachDelegate(); |
233 Singleton<WebSocketThrottle>::get()->RemoveFromQueue(websocket_); | 233 WebSocketThrottle::GetInstance()->RemoveFromQueue(websocket_); |
234 } | 234 } |
235 websocket_->state_ = WebSocketJob::CLOSED; | 235 websocket_->state_ = WebSocketJob::CLOSED; |
236 websocket_->delegate_ = NULL; | 236 websocket_->delegate_ = NULL; |
237 websocket_->socket_ = NULL; | 237 websocket_->socket_ = NULL; |
238 } | 238 } |
239 | 239 |
240 scoped_refptr<MockCookieStore> cookie_store_; | 240 scoped_refptr<MockCookieStore> cookie_store_; |
241 scoped_refptr<MockCookiePolicy> cookie_policy_; | 241 scoped_refptr<MockCookiePolicy> cookie_policy_; |
242 scoped_refptr<MockURLRequestContext> context_; | 242 scoped_refptr<MockURLRequestContext> context_; |
243 scoped_refptr<WebSocketJob> websocket_; | 243 scoped_refptr<WebSocketJob> websocket_; |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 EXPECT_EQ(2U, cookie_store_->entries().size()); | 515 EXPECT_EQ(2U, cookie_store_->entries().size()); |
516 EXPECT_EQ(cookieUrl, cookie_store_->entries()[0].url); | 516 EXPECT_EQ(cookieUrl, cookie_store_->entries()[0].url); |
517 EXPECT_EQ("CR-test=1", cookie_store_->entries()[0].cookie_line); | 517 EXPECT_EQ("CR-test=1", cookie_store_->entries()[0].cookie_line); |
518 EXPECT_EQ(cookieUrl, cookie_store_->entries()[1].url); | 518 EXPECT_EQ(cookieUrl, cookie_store_->entries()[1].url); |
519 EXPECT_EQ("CR-test-httponly=1", cookie_store_->entries()[1].cookie_line); | 519 EXPECT_EQ("CR-test-httponly=1", cookie_store_->entries()[1].cookie_line); |
520 | 520 |
521 CloseWebSocketJob(); | 521 CloseWebSocketJob(); |
522 } | 522 } |
523 | 523 |
524 } // namespace net | 524 } // namespace net |
OLD | NEW |