summaryrefslogtreecommitdiffstats
path: root/net/tools
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-02 22:41:50 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-02 22:41:50 +0000
commitd4d304a5532717d92098d66bf1063c687d764833 (patch)
tree84bb0764db754eabad7485562b480eb7a777c09f /net/tools
parent0da8aa29334ee56f0a0a618dbf0a0bb9d1cec06f (diff)
downloadchromium_src-d4d304a5532717d92098d66bf1063c687d764833.zip
chromium_src-d4d304a5532717d92098d66bf1063c687d764833.tar.gz
chromium_src-d4d304a5532717d92098d66bf1063c687d764833.tar.bz2
Alter the forward declarations so they match the definition. Unbreaks clang, broken by r73491.
BUG=none TEST=none Review URL: http://codereview.chromium.org/6250117 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73522 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/tools')
-rw-r--r--net/tools/flip_server/acceptor_thread.h2
-rw-r--r--net/tools/flip_server/sm_connection.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/tools/flip_server/acceptor_thread.h b/net/tools/flip_server/acceptor_thread.h
index df161d7..8e79ed7 100644
--- a/net/tools/flip_server/acceptor_thread.h
+++ b/net/tools/flip_server/acceptor_thread.h
@@ -21,7 +21,7 @@ namespace net {
class FlipAcceptor;
class MemoryCache;
class SMConnection;
-class SSLState;
+struct SSLState;
// TODO(mbelshe): Get rid of this class; we don't need a lock just to set
// a bool cross threads - especially one which only is set once...
diff --git a/net/tools/flip_server/sm_connection.h b/net/tools/flip_server/sm_connection.h
index f62e86c..62d50a0 100644
--- a/net/tools/flip_server/sm_connection.h
+++ b/net/tools/flip_server/sm_connection.h
@@ -22,7 +22,7 @@ namespace net {
class FlipAcceptor;
class MemoryCache;
-class SSLState;
+struct SSLState;
// A frame of data to be sent.
class DataFrame {