diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-20 06:23:27 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-20 06:23:27 +0000 |
commit | 4d36536bcb6052374f286c7423449b2c88deacb4 (patch) | |
tree | 7d505e00be6b727be9029c2f1e03a5bfba8ca0f9 /chrome/common/socket_stream_dispatcher.h | |
parent | a47cc547f33b5f09ebc3c92d97736e3881c8c75e (diff) | |
download | chromium_src-4d36536bcb6052374f286c7423449b2c88deacb4.zip chromium_src-4d36536bcb6052374f286c7423449b2c88deacb4.tar.gz chromium_src-4d36536bcb6052374f286c7423449b2c88deacb4.tar.bz2 |
FBTF: Header cleanup in chrome/common part 2. The majority of the changed files
just added notification_observer.h.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3120021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56824 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/socket_stream_dispatcher.h')
-rw-r--r-- | chrome/common/socket_stream_dispatcher.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/chrome/common/socket_stream_dispatcher.h b/chrome/common/socket_stream_dispatcher.h index 2640ed4..e0bf58f 100644 --- a/chrome/common/socket_stream_dispatcher.h +++ b/chrome/common/socket_stream_dispatcher.h @@ -9,9 +9,19 @@ #include <vector> #include "base/basictypes.h" -#include "ipc/ipc_channel.h" -#include "ipc/ipc_message.h" -#include "webkit/glue/websocketstreamhandle_bridge.h" + +namespace IPC { +class Message; +} + +namespace WebKit { +class WebSocketStreamHandle; +} + +namespace webkit_glue { +class WebSocketStreamHandleBridge; +class WebSocketStreamHandleDelegate; +} // Dispatches socket stream related messages sent to a child process from the // main browser process. There is one instance per child process. Messages |