| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/browser/chromeos/web_socket_proxy.h" | 5 #include "chrome/browser/chromeos/web_socket_proxy.h" |
| 6 | 6 |
| 7 #include <stdio.h> | 7 #include <stdio.h> |
| 8 #include <stdlib.h> | 8 #include <stdlib.h> |
| 9 #include <string.h> | 9 #include <string.h> |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "base/base64.h" | 26 #include "base/base64.h" |
| 27 #include "base/basictypes.h" | 27 #include "base/basictypes.h" |
| 28 #include "base/logging.h" | 28 #include "base/logging.h" |
| 29 #include "base/memory/scoped_ptr.h" | 29 #include "base/memory/scoped_ptr.h" |
| 30 #include "base/sha1.h" | 30 #include "base/sha1.h" |
| 31 #include "base/stl_util.h" | 31 #include "base/stl_util.h" |
| 32 #include "base/string_number_conversions.h" | 32 #include "base/string_number_conversions.h" |
| 33 #include "base/string_util.h" | 33 #include "base/string_util.h" |
| 34 #include "chrome/browser/internal_auth.h" | 34 #include "chrome/browser/internal_auth.h" |
| 35 #include "chrome/common/chrome_notification_types.h" | 35 #include "chrome/common/chrome_notification_types.h" |
| 36 #include "chrome/common/url_constants.h" |
| 36 #include "content/browser/browser_thread.h" | 37 #include "content/browser/browser_thread.h" |
| 37 #include "content/common/content_notification_types.h" | 38 #include "content/common/content_notification_types.h" |
| 38 #include "content/common/notification_service.h" | 39 #include "content/common/notification_service.h" |
| 39 #include "content/common/url_constants.h" | 40 #include "content/common/url_constants.h" |
| 40 #include "googleurl/src/gurl.h" | 41 #include "googleurl/src/gurl.h" |
| 41 #include "third_party/libevent/evdns.h" | 42 #include "third_party/libevent/evdns.h" |
| 42 #include "third_party/libevent/event.h" | 43 #include "third_party/libevent/event.h" |
| 43 | 44 |
| 44 namespace chromeos { | 45 namespace chromeos { |
| 45 | 46 |
| (...skipping 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1390 | 1391 |
| 1391 void WebSocketProxy::Shutdown() { | 1392 void WebSocketProxy::Shutdown() { |
| 1392 static_cast<Serv*>(impl_)->Shutdown(); | 1393 static_cast<Serv*>(impl_)->Shutdown(); |
| 1393 } | 1394 } |
| 1394 | 1395 |
| 1395 void WebSocketProxy::OnNetworkChange() { | 1396 void WebSocketProxy::OnNetworkChange() { |
| 1396 static_cast<Serv*>(impl_)->OnNetworkChange(); | 1397 static_cast<Serv*>(impl_)->OnNetworkChange(); |
| 1397 } | 1398 } |
| 1398 | 1399 |
| 1399 } // namespace chromeos | 1400 } // namespace chromeos |
| 1400 | |
| OLD | NEW |