| 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_TCP_SOCKET_MESSAGE_FILTER_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_TCP_SOCKET_MESSAGE_FILTER_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_TCP_SOCKET_MESSAGE_FILTER_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_TCP_SOCKET_MESSAGE_FILTER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "ppapi/c/private/ppb_net_address_private.h" | 28 #include "ppapi/c/private/ppb_net_address_private.h" |
| 29 #include "ppapi/host/resource_message_filter.h" | 29 #include "ppapi/host/resource_message_filter.h" |
| 30 #include "ppapi/shared_impl/ppb_tcp_socket_shared.h" | 30 #include "ppapi/shared_impl/ppb_tcp_socket_shared.h" |
| 31 | 31 |
| 32 #if defined(OS_CHROMEOS) | 32 #if defined(OS_CHROMEOS) |
| 33 #include "chromeos/network/firewall_hole.h" | 33 #include "chromeos/network/firewall_hole.h" |
| 34 #include "content/public/browser/browser_thread.h" | 34 #include "content/public/browser/browser_thread.h" |
| 35 #endif // defined(OS_CHROMEOS) | 35 #endif // defined(OS_CHROMEOS) |
| 36 | 36 |
| 37 namespace net { | 37 namespace net { |
| 38 enum AddressFamily; | |
| 39 class DrainableIOBuffer; | 38 class DrainableIOBuffer; |
| 40 class IOBuffer; | 39 class IOBuffer; |
| 41 class SSLClientSocket; | 40 class SSLClientSocket; |
| 42 } | 41 } |
| 43 | 42 |
| 44 namespace ppapi { | 43 namespace ppapi { |
| 45 class SocketOptionData; | 44 class SocketOptionData; |
| 46 | 45 |
| 47 namespace host { | 46 namespace host { |
| 48 struct ReplyMessageContext; | 47 struct ReplyMessageContext; |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 int pending_read_net_result_; | 263 int pending_read_net_result_; |
| 265 | 264 |
| 266 const bool is_potentially_secure_plugin_context_; | 265 const bool is_potentially_secure_plugin_context_; |
| 267 | 266 |
| 268 DISALLOW_COPY_AND_ASSIGN(PepperTCPSocketMessageFilter); | 267 DISALLOW_COPY_AND_ASSIGN(PepperTCPSocketMessageFilter); |
| 269 }; | 268 }; |
| 270 | 269 |
| 271 } // namespace content | 270 } // namespace content |
| 272 | 271 |
| 273 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_TCP_SOCKET_MESSAGE_FILTER
_H_ | 272 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_TCP_SOCKET_MESSAGE_FILTER
_H_ |
| OLD | NEW |