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

Unified Diff: content/browser/renderer_host/pepper_message_filter.h

Issue 8506016: Remove 'Flash' from TCP/UDP Pepper interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: resolved last comments Created 9 years, 1 month 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
« no previous file with comments | « no previous file | content/browser/renderer_host/pepper_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/pepper_message_filter.h
diff --git a/content/browser/renderer_host/pepper_message_filter.h b/content/browser/renderer_host/pepper_message_filter.h
index 8aec438a7219e8a2d7c0dcc251af06f6d06abdb1..a328a4ad2e8efa80b6a36d4bfd4bca42a562a2a7 100644
--- a/content/browser/renderer_host/pepper_message_filter.h
+++ b/content/browser/renderer_host/pepper_message_filter.h
@@ -42,11 +42,11 @@ class PepperMessageFilter : public BrowserMessageFilter {
bool* message_was_ok);
private:
- template<class SocketType> class FlashSocketManager;
- class FlashTCPSocket;
- class FlashTCPSocketManager;
- class FlashUDPSocket;
- class FlashUDPSocketManager;
+ template<class SocketType> class SocketManager;
+ class TCPSocket;
+ class TCPSocketManager;
+ class UDPSocket;
+ class UDPSocketManager;
#if defined(ENABLE_FLAPPER_HACKS)
// Message handlers.
@@ -98,8 +98,8 @@ class PepperMessageFilter : public BrowserMessageFilter {
// GetHostResolver instead of accessing directly.
net::HostResolver* host_resolver_;
- scoped_ptr<FlashTCPSocketManager> socket_manager_tcp_;
- scoped_ptr<FlashUDPSocketManager> socket_manager_udp_;
+ scoped_ptr<TCPSocketManager> socket_manager_tcp_;
+ scoped_ptr<UDPSocketManager> socket_manager_udp_;
DISALLOW_COPY_AND_ASSIGN(PepperMessageFilter);
};
« no previous file with comments | « no previous file | content/browser/renderer_host/pepper_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698