summaryrefslogtreecommitdiffstats
path: root/net/tools
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-11 05:27:26 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-11 05:27:26 +0000
commit6a60c8cdaeb4bfe2108bdda58e2c094ee453c1bf (patch)
tree2fa73f7cf39796509c1ae384282c4dd61c7c72d7 /net/tools
parent4d5b96b229869f27a1ab1bb31e952615ef770e12 (diff)
downloadchromium_src-6a60c8cdaeb4bfe2108bdda58e2c094ee453c1bf.zip
chromium_src-6a60c8cdaeb4bfe2108bdda58e2c094ee453c1bf.tar.gz
chromium_src-6a60c8cdaeb4bfe2108bdda58e2c094ee453c1bf.tar.bz2
Cleanup: Remove unneeded forward declararations in net.
BUG=none TEST=none Review URL: http://codereview.chromium.org/8525020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109590 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/tools')
-rw-r--r--net/tools/flip_server/spdy_interface.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/net/tools/flip_server/spdy_interface.h b/net/tools/flip_server/spdy_interface.h
index 179b10c..e9bedc1 100644
--- a/net/tools/flip_server/spdy_interface.h
+++ b/net/tools/flip_server/spdy_interface.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_
-#define NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_
+#ifndef NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_
+#define NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_
#include <map>
#include <string>
@@ -19,7 +19,6 @@
namespace net {
-class BalsaFrame;
class FlipAcceptor;
class MemoryCache;
@@ -57,8 +56,8 @@ class SpdySM : public spdy::SpdyFramerVisitorInterface,
SMInterface* FindOrMakeNewSMConnectionInterface(std::string server_ip,
std::string server_port);
int SpdyHandleNewStream(const spdy::SpdyControlFrame* frame,
- std::string &http_data,
- bool *is_https_scheme);
+ std::string& http_data,
+ bool* is_https_scheme);
// SpdyFramerVisitor interface.
virtual void OnControl(const spdy::SpdyControlFrame* frame);
@@ -82,7 +81,7 @@ class SpdySM : public spdy::SpdyFramerVisitorInterface,
// SMInterface's Cleanup is currently only called by SMConnection after a
// protocol message as been fully read. Spdy's SMInterface does not need
// to do any cleanup at this time.
- // TODO (klindsay) This method is probably not being used properly and
+ // TODO(klindsay) This method is probably not being used properly and
// some logic review and method renaming is probably in order.
virtual void Cleanup() {}
// Send a settings frame
@@ -143,5 +142,4 @@ class SpdySM : public spdy::SpdyFramerVisitorInterface,
} // namespace net
-#endif // NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_
-
+#endif // NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_